summaryrefslogtreecommitdiffstats
path: root/tqdbusproxy.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:23:20 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:23:20 -0600
commit9382852ba75c745258b60f0fc065651a7580c593 (patch)
treec5a90b11edfdedb140bc4e66a4599834ebdf4b77 /tqdbusproxy.h
parent33bcd26f99ce0f05cdf7e1c5e9c7e0ff3073f2b7 (diff)
downloaddbus-1-tqt-9382852ba75c745258b60f0fc065651a7580c593.tar.gz
dbus-1-tqt-9382852ba75c745258b60f0fc065651a7580c593.zip
Rename additional global TQt functions
Diffstat (limited to 'tqdbusproxy.h')
-rw-r--r--tqdbusproxy.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/tqdbusproxy.h b/tqdbusproxy.h
index 4c2ea54..8d594cd 100644
--- a/tqdbusproxy.h
+++ b/tqdbusproxy.h
@@ -67,7 +67,7 @@
*
* TQT_DBusConnection connection = TQT_DBusConnection::sessionBus();
* if (!connection.isConnected())
- * qFatal("Failed to connect to session bus");
+ * tqFatal("Failed to connect to session bus");
*
* // create a proxy object for method calls
*
@@ -83,19 +83,19 @@
* TQT_DBusMessage reply = proxy.sendWithReply("ListNames", params);
*
* if (reply.type() != TQT_DBusMessage::ReplyMessage)
- * qFatal("Call failed");
+ * tqFatal("Call failed");
*
* if (reply.count() != 1 || reply[0].type() != TQT_DBusData::List)
- * qFatal("Unexpected reply");
+ * tqFatal("Unexpected reply");
*
* bool ok = false;
* TQStringList names = reply[0].toTQStringList(&ok);
*
- * if (!ok) qFatal("Unexpected reply");
+ * if (!ok) tqFatal("Unexpected reply");
*
* for (TQStringList::iterator it = names.begin(); it != names.end(); ++it)
* {
- * qDebug("%s", (*it).local8Bit().data());
+ * tqDebug("%s", (*it).local8Bit().data());
* }
*
* return 0;