diff options
author | fcolin | 2007-02-01 13:00:25 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:00:25 +0000 |
commit | abb65226983bbee29c17c004b75bc50918d15003 (patch) | |
tree | 1a9fbb62317276d638ad5d868be882386c309f6e /Ivy/IvyApplication.cxx | |
parent | 836c3cea5435c0313827691cb6cc71de3c872237 (diff) | |
download | ivy-cplusplus-abb65226983bbee29c17c004b75bc50918d15003.zip ivy-cplusplus-abb65226983bbee29c17c004b75bc50918d15003.tar.gz ivy-cplusplus-abb65226983bbee29c17c004b75bc50918d15003.tar.bz2 ivy-cplusplus-abb65226983bbee29c17c004b75bc50918d15003.tar.xz |
Utilisateur : Fcolin Date : 19/04/06 Heure : 15:07 Archivé dans $/Bus/Ivy Commentaire: (vss 29)
Diffstat (limited to 'Ivy/IvyApplication.cxx')
-rw-r--r-- | Ivy/IvyApplication.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Ivy/IvyApplication.cxx b/Ivy/IvyApplication.cxx index b0fa052..c9ba0e4 100644 --- a/Ivy/IvyApplication.cxx +++ b/Ivy/IvyApplication.cxx @@ -162,12 +162,12 @@ void IvyApplication::OnReceive(char * line) exp = pcre_compile( arg, PCRE_CASELESS, &errmsg, &erroffset, NULL );
if ( !exp )
{
- ivy::string err( "Error can't compile regexp '" );
- err += arg;
- err += "' error ";
- err += errmsg;
- SendMsg( Error, Error, err.c_str() );
- TRACE("IvyApplication %s\n",err.c_str());
+ ivy::string errstr( "Error can't compile regexp '" );
+ errstr += arg;
+ errstr += "' error ";
+ errstr += errmsg;
+ SendMsg( Error, Error, errstr.c_str() );
+ TRACE("IvyApplication %s\n",errstr.c_str());
return;
}
#else
|