summaryrefslogtreecommitdiffstats
path: root/tqdbusobject.h
diff options
context:
space:
mode:
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);