X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkExceptionObject.cxx;h=2b25696ba4c4f0fc810912bb8c07c09928b6b91b;hb=e49162511fd226bd3b5299e472dbd4db803cd01a;hp=b76edf5582c51283380fca784eafea246e95afea;hpb=0ce3ba4762f60cb451490224e436081cb0ae2598;p=clitk.git diff --git a/common/clitkExceptionObject.cxx b/common/clitkExceptionObject.cxx index b76edf5..2b25696 100644 --- a/common/clitkExceptionObject.cxx +++ b/common/clitkExceptionObject.cxx @@ -34,13 +34,12 @@ ExceptionObject(const char *file, unsigned int lineNumber, const char *desc): //-------------------------------------------------------------------- const char* clitk::ExceptionObject::what() const throw() { - ::itk::OStringStream message; + std::ostringstream message; message << "clitk::ERROR in " << m_Filename << " line " << m_LineNumber << " : " << std::endl << "\t" << m_Message; char * m = new char[message.str().length()]; - for(uint i=0; i< message.str().length(); i++) - m[i] = message.str().c_str()[i]; - return m;//essage.str().c_str(); + strcpy(m, message.str().c_str()); + return m; } //--------------------------------------------------------------------