diff options
Diffstat (limited to 'tqdbusproxy.h')
-rw-r--r-- | tqdbusproxy.h | 10 |
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; |