diff options
Diffstat (limited to 'interfaces/tdeimproxy/library')
-rw-r--r-- | interfaces/tdeimproxy/library/tdeimproxy.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/interfaces/tdeimproxy/library/tdeimproxy.cpp b/interfaces/tdeimproxy/library/tdeimproxy.cpp index 022737ed4..7e956f718 100644 --- a/interfaces/tdeimproxy/library/tdeimproxy.cpp +++ b/interfaces/tdeimproxy/library/tdeimproxy.cpp @@ -492,7 +492,7 @@ void KIMProxy::chatWithContact( const TQString& uid ) { if ( KIMIface_stub* s = stubForUid( uid ) ) { - kapp->updateRemoteUserTimestamp( s->app() ); + tdeApp->updateRemoteUserTimestamp( s->app() ); s->chatWithContact( uid ); } } @@ -505,7 +505,7 @@ void KIMProxy::messageContact( const TQString& uid, const TQString& message ) { if ( KIMIface_stub* s = stubForUid( uid ) ) { - kapp->updateRemoteUserTimestamp( s->app() ); + tdeApp->updateRemoteUserTimestamp( s->app() ); s->messageContact( uid, message ); } } @@ -521,7 +521,7 @@ void KIMProxy::sendFile(const TQString &uid, const KURL &sourceURL, const TQStri { if ( it.current()->canReceiveFiles( uid ) ) { - kapp->updateRemoteUserTimestamp( it.current()->app() ); + tdeApp->updateRemoteUserTimestamp( it.current()->app() ); it.current()->sendFile( uid, sourceURL, altFileName, fileSize ); break; } |