summaryrefslogtreecommitdiffstats
path: root/tdeabc/tests
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-01-13 23:01:29 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-01-15 16:22:14 +0900
commitb71912fbcb90d5504aad9f17530c94169a661fed (patch)
treee9039e4a956fb8af5ba2878db5320236eb0f93b1 /tdeabc/tests
parent8ee06ec529e375693eaefa6fb68dc496d36fd367 (diff)
downloadtdelibs-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')
-rw-r--r--tdeabc/tests/testldapclient.cpp4
-rw-r--r--tdeabc/tests/testlock.cpp2
2 files changed, 3 insertions, 3 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"
diff --git a/tdeabc/tests/testlock.cpp b/tdeabc/tests/testlock.cpp
index d593945bf..24f34b79e 100644
--- a/tdeabc/tests/testlock.cpp
+++ b/tdeabc/tests/testlock.cpp
@@ -197,7 +197,7 @@ int main(int argc,char **argv)
LockWidget mainWidget( identifier );
- kapp->setMainWidget( &mainWidget );
+ tdeApp->setMainWidget( &mainWidget );
mainWidget.show();
return app.exec();