summaryrefslogtreecommitdiffstats
path: root/tqdbusobject.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 /tqdbusobject.h
parent33bcd26f99ce0f05cdf7e1c5e9c7e0ff3073f2b7 (diff)
downloaddbus-1-tqt-9382852ba75c745258b60f0fc065651a7580c593.tar.gz
dbus-1-tqt-9382852ba75c745258b60f0fc065651a7580c593.zip
Rename additional global TQt functions
Diffstat (limited to 'tqdbusobject.h')
-rw-r--r--tqdbusobject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tqdbusobject.h b/tqdbusobject.h
index 2e07a44..aa16750 100644
--- a/tqdbusobject.h
+++ b/tqdbusobject.h
@@ -148,18 +148,18 @@
*
* TQT_DBusConnection connection = TQT_DBusConnection::sessionBus();
* if (!connection.isConnected())
- * qFatal("Cannot connect to session bus");
+ * tqFatal("Cannot connect to session bus");
*
* // try to get a specific service name
* if (!connection.requestName("org.example.SortService"))
* {
- * qWarning("Requesting name 'org.example.SortService' failed. "
+ * tqWarning("Requesting name 'org.example.SortService' failed. "
* "Will only be addressable through unique name '%s'",
* connection.uniqueName().local8Bit().data());
* }
* else
* {
- * qDebug("Requesting name 'org.example.SortService' successfull");
+ * tqDebug("Requesting name 'org.example.SortService' successfull");
* }
*
* TestService service(connection);