diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-13 08:32:36 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-13 08:32:36 +0000 |
commit | f7e71d47719ab6094cf4a9fafffa5ea351973522 (patch) | |
tree | 30834aa632d442019e14f88685001d94657d060b /kded/kded.cpp | |
parent | b31cfd9a1ee986fe2ae9a693f3afd7f171dd897c (diff) | |
download | tdelibs-f7e71d47719ab6094cf4a9fafffa5ea351973522.tar.gz tdelibs-f7e71d47719ab6094cf4a9fafffa5ea351973522.zip |
Initial conversion for TQt for Qt4 3.4.0 TP2
This will also compile with TQt for Qt3, and should not cause any problems
with dependent modules such as kdebase. If it does then it needs to be fixed!
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1214149 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kded/kded.cpp')
-rw-r--r-- | kded/kded.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kded/kded.cpp b/kded/kded.cpp index d33bfc6b3..7f8ec9121 100644 --- a/kded/kded.cpp +++ b/kded/kded.cpp @@ -247,7 +247,7 @@ void Kded::noDemandLoad(const TQString &obj) KDEDModule *Kded::loadModule(const TQCString &obj, bool onDemand) { - KDEDModule *module = m_modules.find(obj); + KDEDModule *module = m_modules.tqfind(obj); if (module) return module; KService::Ptr s = KService::serviceByDesktopPath("kded/"+obj+".desktop"); @@ -260,7 +260,7 @@ KDEDModule *Kded::loadModule(const KService *s, bool onDemand) if (s && !s->library().isEmpty()) { TQCString obj = s->desktopEntryName().latin1(); - KDEDModule *oldModule = m_modules.find(obj); + KDEDModule *oldModule = m_modules.tqfind(obj); if (oldModule) return oldModule; @@ -374,7 +374,7 @@ void Kded::slotApplicationRemoved(const TQCString &appId) it.current()->removeAll(appId); } - TQValueList<long> *windowIds = m_windowIdList.find(appId); + TQValueList<long> *windowIds = m_windowIdList.tqfind(appId); if (windowIds) { for( TQValueList<long>::ConstIterator it = windowIds->begin(); @@ -428,7 +428,7 @@ void Kded::updateResourceList() it != dirs.end(); ++it ) { - if (m_allResourceDirs.find(*it) == m_allResourceDirs.end()) + if (m_allResourceDirs.tqfind(*it) == m_allResourceDirs.end()) { m_allResourceDirs.append(*it); readDirectory(*it); @@ -577,7 +577,7 @@ void Kded::readDirectory( const TQString& _path ) if ( !d.exists() ) // exists&isdir? { - kdDebug(7020) << TQString("Does not exist! (%1)").arg(_path) << endl; + kdDebug(7020) << TQString(TQString("Does not exist! (%1)").arg(_path)) << endl; return; // return false } @@ -603,18 +603,18 @@ void Kded::readDirectory( const TQString& _path ) bool Kded::isWindowRegistered(long windowId) { - return m_globalWindowIdList.find(windowId) != 0; + return m_globalWindowIdList.tqfind(windowId) != 0; } // DCOP void Kded::registerWindowId(long windowId) { - m_globalWindowIdList.replace(windowId, &windowId); + m_globalWindowIdList.tqreplace(windowId, &windowId); TQCString sender = callingDcopClient()->senderId(); if( sender.isEmpty()) // local call sender = callingDcopClient()->appId(); - TQValueList<long> *windowIds = m_windowIdList.find(sender); + TQValueList<long> *windowIds = m_windowIdList.tqfind(sender); if (!windowIds) { windowIds = new TQValueList<long>; @@ -636,7 +636,7 @@ void Kded::unregisterWindowId(long windowId) TQCString sender = callingDcopClient()->senderId(); if( sender.isEmpty()) // local call sender = callingDcopClient()->appId(); - TQValueList<long> *windowIds = m_windowIdList.find(sender); + TQValueList<long> *windowIds = m_windowIdList.tqfind(sender); if (windowIds) { windowIds->remove(windowId); |