From f32d0d5fd00bb0fb863bf82a406f98ccf909cd8b Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: 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 --- tqdbusconnection.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tqdbusconnection.cpp') 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 ; -- cgit v1.2.1