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 /tderesources/managerimpl.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 'tderesources/managerimpl.cpp')
-rw-r--r-- | tderesources/managerimpl.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tderesources/managerimpl.cpp b/tderesources/managerimpl.cpp index ee93fc8b0..e08c0bd87 100644 --- a/tderesources/managerimpl.cpp +++ b/tderesources/managerimpl.cpp @@ -48,9 +48,9 @@ ManagerImpl::ManagerImpl( ManagerNotifier *notifier, const TQString &family ) mId = TDEApplication::randomString( 8 ); // Register with DCOP - if ( !kapp->dcopClient()->isRegistered() ) { - kapp->dcopClient()->registerAs( "TDEResourcesManager" ); - kapp->dcopClient()->setDefaultObject( objId() ); + if ( !tdeApp->dcopClient()->isRegistered() ) { + tdeApp->dcopClient()->registerAs( "TDEResourcesManager" ); + tdeApp->dcopClient()->setDefaultObject( objId() ); } kdDebug(5650) << "Connecting DCOP signals..." << endl; @@ -69,7 +69,7 @@ ManagerImpl::ManagerImpl( ManagerNotifier *notifier, const TQString &family ) "dcopKResourceDeleted( TQString, TQString )", false ) ) kdWarning(5650) << "Could not connect ResourceDeleted signal!" << endl; - kapp->dcopClient()->setNotifications( true ); + tdeApp->dcopClient()->setNotifications( true ); } ManagerImpl::~ManagerImpl() |