diff options
author | fcolin | 2007-02-01 12:59:35 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 12:59:35 +0000 |
commit | 9f35a6240dc6cffb469f3a96330c92f64e07110f (patch) | |
tree | c57b7a1e18ee3df452a3151262e22f59ce44b44a /Bus/Ivy/IvyApplication.cxx | |
parent | ed68834b65e73c237740192961ddcd0a9d7ae843 (diff) | |
download | ivy-cplusplus-9f35a6240dc6cffb469f3a96330c92f64e07110f.zip ivy-cplusplus-9f35a6240dc6cffb469f3a96330c92f64e07110f.tar.gz ivy-cplusplus-9f35a6240dc6cffb469f3a96330c92f64e07110f.tar.bz2 ivy-cplusplus-9f35a6240dc6cffb469f3a96330c92f64e07110f.tar.xz |
Utilisateur : Fcolin Date : 16/01/01 Heure : 14:56 Archivé dans $/Ivy (vss 4)
Diffstat (limited to 'Bus/Ivy/IvyApplication.cxx')
-rw-r--r-- | Bus/Ivy/IvyApplication.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bus/Ivy/IvyApplication.cxx b/Bus/Ivy/IvyApplication.cxx index cd0e70c..d949845 100644 --- a/Bus/Ivy/IvyApplication.cxx +++ b/Bus/Ivy/IvyApplication.cxx @@ -115,7 +115,7 @@ void IvyApplication::OnReceive(char * line) if ( !bus->CheckRegexp( arg ) )
{
#ifdef DEBUG
- TRACE("Warning exp='%s' can't match removing from %s\n",arg,appname);
+ TRACE("Warning exp='%s' can't match removing from %s\n",arg,appname.c_str());
#endif //DEBUG
return;
}
@@ -154,7 +154,7 @@ void IvyApplication::OnReceive(char * line) remoteService = id;
if ( bus->CheckConnected( this ) )
{
- TRACE("Quitting already connected %s\n", appname);
+ TRACE("Quitting already connected %s\n", appname.c_str());
SendMsg( Error, Error, "already connected" );
// bus->RemoveApplication( this );
Close();
|