diff options
Diffstat (limited to 'tqdbusconnection.cpp')
-rw-r--r-- | tqdbusconnection.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tqdbusconnection.cpp b/tqdbusconnection.cpp index 1d77e48..b191f53 100644 --- a/tqdbusconnection.cpp +++ b/tqdbusconnection.cpp @@ -66,7 +66,7 @@ TQT_DBusConnectionPrivate *TQT_DBusConnectionManager::connection(const TQString if (name == TQString::tqfromLatin1(TQT_DBusConnection::default_connection_name)) return default_connection; - ConnectionHash::const_iterator it = connectionHash.tqfind(name); + ConnectionHash::const_iterator it = connectionHash.find(name); return (it != connectionHash.end() ? it.data() : 0); } @@ -78,7 +78,7 @@ void TQT_DBusConnectionManager::removeConnection(const TQString &name) d = default_connection; default_connection = 0; } else { - ConnectionHash::iterator it = connectionHash.tqfind(name); + ConnectionHash::iterator it = connectionHash.find(name); if (it == connectionHash.end()) return; @@ -334,7 +334,7 @@ bool TQT_DBusConnection::registerObject(const TQString& path, TQT_DBusObjectBase if (!d || !d->connection || !object || path.isEmpty()) return false; - TQT_DBusConnectionPrivate::ObjectMap::const_iterator it = d->registeredObjects.tqfind(path); + TQT_DBusConnectionPrivate::ObjectMap::const_iterator it = d->registeredObjects.find(path); if (it != d->registeredObjects.end()) return false; @@ -348,7 +348,7 @@ void TQT_DBusConnection::unregisterObject(const TQString &path) if (!d || !d->connection || path.isEmpty()) return; - TQT_DBusConnectionPrivate::ObjectMap::iterator it = d->registeredObjects.tqfind(path); + TQT_DBusConnectionPrivate::ObjectMap::iterator it = d->registeredObjects.find(path); if (it == d->registeredObjects.end()) return ; |