diff options
author | Timothy Pearson <[email protected]> | 2011-12-16 09:57:57 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-16 09:57:57 -0600 |
commit | c29685c8eeefc745ebaadfd532962f4e3a7d55ea (patch) | |
tree | 41dcdd85f157152fd7d2aadeb645324352c1b2b9 /tqdbusconnection.cpp | |
parent | ab51f6a1367bd94d17209f6d8b327ab5e7eec56f (diff) | |
download | dbus-1-tqt-c29685c8eeefc745ebaadfd532962f4e3a7d55ea.tar.gz dbus-1-tqt-c29685c8eeefc745ebaadfd532962f4e3a7d55ea.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit ab51f6a1367bd94d17209f6d8b327ab5e7eec56f.
Diffstat (limited to 'tqdbusconnection.cpp')
-rw-r--r-- | tqdbusconnection.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tqdbusconnection.cpp b/tqdbusconnection.cpp index a755610..4727549 100644 --- a/tqdbusconnection.cpp +++ b/tqdbusconnection.cpp @@ -63,7 +63,7 @@ TQT_DBusConnectionManager* manager() { TQT_DBusConnectionPrivate *TQT_DBusConnectionManager::connection(const TQString &name) const { - if (name == TQString::fromLatin1(TQT_DBusConnection::default_connection_name)) + if (name == TQString::tqfromLatin1(TQT_DBusConnection::default_connection_name)) return default_connection; ConnectionHash::const_iterator it = connectionHash.find(name); @@ -74,7 +74,7 @@ TQT_DBusConnectionPrivate *TQT_DBusConnectionManager::connection(const TQString void TQT_DBusConnectionManager::removeConnection(const TQString &name) { TQT_DBusConnectionPrivate *d = 0; - if (name == TQString::fromLatin1(TQT_DBusConnection::default_connection_name)) { + if (name == TQString::tqfromLatin1(TQT_DBusConnection::default_connection_name)) { d = default_connection; default_connection = 0; } else { @@ -132,7 +132,7 @@ void qDBusBindToApplication() void TQT_DBusConnectionManager::setConnection(const TQString &name, TQT_DBusConnectionPrivate *c) { - if (name == TQString::fromLatin1(TQT_DBusConnection::default_connection_name)) + if (name == TQString::tqfromLatin1(TQT_DBusConnection::default_connection_name)) default_connection = c; else connectionHash[name] = c; |