diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-13 23:01:29 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-15 16:22:14 +0900 |
commit | b71912fbcb90d5504aad9f17530c94169a661fed (patch) | |
tree | e9039e4a956fb8af5ba2878db5320236eb0f93b1 /tdeabc/tests/testldapclient.cpp | |
parent | 8ee06ec529e375693eaefa6fb68dc496d36fd367 (diff) | |
download | tdelibs-b71912fbcb90d5504aad9f17530c94169a661fed.tar.gz tdelibs-b71912fbcb90d5504aad9f17530c94169a661fed.zip |
Rename TDEApplication::kApplication() to TDEApplication::tdeApplication() and kapp to tdeApp.rename/kapp-tdeapp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeabc/tests/testldapclient.cpp')
-rw-r--r-- | tdeabc/tests/testldapclient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeabc/tests/testldapclient.cpp b/tdeabc/tests/testldapclient.cpp index 338d703f3..779f7bae4 100644 --- a/tdeabc/tests/testldapclient.cpp +++ b/tdeabc/tests/testldapclient.cpp @@ -104,7 +104,7 @@ void TestLDAPClient::testIntevation() connect( mClient, TQ_SIGNAL( error( const TQString& ) ), this, TQ_SLOT( slotLDAPError( const TQString& ) ) ); mClient->startQuery( filter ); - kapp->eventLoop()->enterLoop(); + tdeApp->eventLoop()->enterLoop(); delete mClient; mClient = 0; } @@ -155,7 +155,7 @@ void TestLDAPClient::slotLDAPError( const TQString& err ) void TestLDAPClient::slotLDAPDone() { kdDebug() << k_funcinfo << endl; - kapp->eventLoop()->exitLoop(); + tdeApp->eventLoop()->exitLoop(); } #include "testldapclient.moc" |