summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:15:41 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:15:41 -0600
commitf2d20e882b86b554edb6653eeeb524a38d1caa9a (patch)
tree7ae29037cb54b0ea3b83526e2ef62c643f9d9430
parentc29685c8eeefc745ebaadfd532962f4e3a7d55ea (diff)
downloaddbus-1-tqt-f2d20e88.tar.gz
dbus-1-tqt-f2d20e88.zip
Rename old tq methods that no longer need a unique name
-rw-r--r--tqdbusconnection.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tqdbusconnection.cpp b/tqdbusconnection.cpp
index 4727549..a755610 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::tqfromLatin1(TQT_DBusConnection::default_connection_name))
+ if (name == TQString::fromLatin1(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::tqfromLatin1(TQT_DBusConnection::default_connection_name)) {
+ if (name == TQString::fromLatin1(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::tqfromLatin1(TQT_DBusConnection::default_connection_name))
+ if (name == TQString::fromLatin1(TQT_DBusConnection::default_connection_name))
default_connection = c;
else
connectionHash[name] = c;