From 9382852ba75c745258b60f0fc065651a7580c593 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Mar 2012 13:23:20 -0600 Subject: Rename additional global TQt functions --- tqdbusproxy.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tqdbusproxy.h') 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; -- cgit v1.2.1