diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | f32d0d5fd00bb0fb863bf82a406f98ccf909cd8b (patch) | |
tree | 51cd396142993d8cc972f94d0b81abbbeb9ee6ee /tqdbusconnection.cpp | |
parent | c8d1884b41b717f12665f760b74757e851fddb15 (diff) | |
download | dbus-1-tqt-f32d0d5fd00bb0fb863bf82a406f98ccf909cd8b.tar.gz dbus-1-tqt-f32d0d5fd00bb0fb863bf82a406f98ccf909cd8b.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/dbus-1-tqt@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 ; |