diff options
Diffstat (limited to 'libkdenetwork/qgpgme')
-rw-r--r-- | libkdenetwork/qgpgme/eventloopinteractor.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libkdenetwork/qgpgme/eventloopinteractor.cpp b/libkdenetwork/qgpgme/eventloopinteractor.cpp index 9396385b7..8846bb2a5 100644 --- a/libkdenetwork/qgpgme/eventloopinteractor.cpp +++ b/libkdenetwork/qgpgme/eventloopinteractor.cpp @@ -36,9 +36,9 @@ QGpgME::EventLoopInteractor::EventLoopInteractor( TQObject * parent, const char : TQObject( parent, name ), GpgME::EventLoopInteractor() { if ( !parent ) - if ( qApp ) { - connect( qApp, TQT_SIGNAL(aboutToQuit()), TQT_SLOT(deleteLater()) ); - connect( qApp, TQT_SIGNAL(aboutToQuit()), TQT_SIGNAL(aboutToDestroy()) ); + if ( tqApp ) { + connect( tqApp, TQT_SIGNAL(aboutToQuit()), TQT_SLOT(deleteLater()) ); + connect( tqApp, TQT_SIGNAL(aboutToQuit()), TQT_SIGNAL(aboutToDestroy()) ); } mSelf = this; } @@ -53,7 +53,7 @@ QGpgME::EventLoopInteractor * QGpgME::EventLoopInteractor::mSelf = 0; QGpgME::EventLoopInteractor * QGpgME::EventLoopInteractor::instance() { if ( !mSelf ) #ifndef NDEBUG - if ( !qApp ) + if ( !tqApp ) qWarning( "QGpgME::EventLoopInteractor: Need a TQApplication object before calling instance()!" ); else #endif |