diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:23:20 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:23:20 -0600 |
commit | 9382852ba75c745258b60f0fc065651a7580c593 (patch) | |
tree | c5a90b11edfdedb140bc4e66a4599834ebdf4b77 /tqdbusproxy.h | |
parent | 33bcd26f99ce0f05cdf7e1c5e9c7e0ff3073f2b7 (diff) | |
download | dbus-1-tqt-9382852ba75c745258b60f0fc065651a7580c593.tar.gz dbus-1-tqt-9382852ba75c745258b60f0fc065651a7580c593.zip |
Rename additional global TQt functions
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; |