summaryrefslogtreecommitdiffstats
path: root/tqdbusconnection.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:57 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:57 -0600
commitc29685c8eeefc745ebaadfd532962f4e3a7d55ea (patch)
tree41dcdd85f157152fd7d2aadeb645324352c1b2b9 /tqdbusconnection.cpp
parentab51f6a1367bd94d17209f6d8b327ab5e7eec56f (diff)
downloaddbus-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.cpp6
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;