summaryrefslogtreecommitdiffstats
path: root/tools
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 /tools
parent33bcd26f99ce0f05cdf7e1c5e9c7e0ff3073f2b7 (diff)
downloaddbus-1-tqt-9382852ba75c745258b60f0fc065651a7580c593.tar.gz
dbus-1-tqt-9382852ba75c745258b60f0fc065651a7580c593.zip
Rename additional global TQt functions
Diffstat (limited to 'tools')
-rw-r--r--tools/dbusxml2qt3/classgen.cpp4
-rw-r--r--tools/dbusxml2qt3/main.cpp2
-rw-r--r--tools/dbusxml2qt3/methodgen.cpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/tools/dbusxml2qt3/classgen.cpp b/tools/dbusxml2qt3/classgen.cpp
index ee626a5..040a969 100644
--- a/tools/dbusxml2qt3/classgen.cpp
+++ b/tools/dbusxml2qt3/classgen.cpp
@@ -556,7 +556,7 @@ static void writeMethodDeclarations(const Class& classData, Class::Role role,
switch (role)
{
case Class::Interface:
- qWarning("Properties not yet supported for interfaces");
+ tqWarning("Properties not yet supported for interfaces");
skip = true;
pureVirtual = true;
break;
@@ -959,7 +959,7 @@ bool ClassGenerator::finishStreams(const TQString& baseName,
bool ClassGenerator::extractClass(const TQDomElement& interfaceElement,
Class& classData)
{
- qDebug("ClassGenerator: processing interface '%s'",
+ tqDebug("ClassGenerator: processing interface '%s'",
interfaceElement.attribute("name").latin1());
classData.dbusName = interfaceElement.attribute("name");
diff --git a/tools/dbusxml2qt3/main.cpp b/tools/dbusxml2qt3/main.cpp
index cdc0a98..0208072 100644
--- a/tools/dbusxml2qt3/main.cpp
+++ b/tools/dbusxml2qt3/main.cpp
@@ -277,7 +277,7 @@ int main(int argc, char** argv)
{
if (!hasIntrospectable)
{
- qDebug("Generating org.freedesktop.DBus.Introspectable on demand");
+ tqDebug("Generating org.freedesktop.DBus.Introspectable on demand");
Class classData;
classData.name = "Introspectable";
diff --git a/tools/dbusxml2qt3/methodgen.cpp b/tools/dbusxml2qt3/methodgen.cpp
index ec569ab..45a5b8e 100644
--- a/tools/dbusxml2qt3/methodgen.cpp
+++ b/tools/dbusxml2qt3/methodgen.cpp
@@ -835,7 +835,7 @@ void MethodGenerator::writeMethodCall(const Class& classData,
stream << " if (!error.isValid())" << endl;
stream << " {" << endl;
- stream << " qWarning(\"Call to implementation of ";
+ stream << " tqWarning(\"Call to implementation of ";
TQStringList::const_iterator nsIt = classData.namespaces.begin();
TQStringList::const_iterator nsEndIt = classData.namespaces.end();