diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:33:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:33:40 -0600 |
commit | 4fb897b216c41c13f128c71bcc66f60e2dc601c4 (patch) | |
tree | 2891b54cd6ec39db133da0110028ec93fc006751 /dcop/client/dcopstart.cpp | |
parent | 8fc8811ef6079a15decd33f1ea5d95dd718e4557 (diff) | |
download | tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.tar.gz tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.zip |
Rename additional global TQt functions
Diffstat (limited to 'dcop/client/dcopstart.cpp')
-rw-r--r-- | dcop/client/dcopstart.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dcop/client/dcopstart.cpp b/dcop/client/dcopstart.cpp index 5741ef775..737184385 100644 --- a/dcop/client/dcopstart.cpp +++ b/dcop/client/dcopstart.cpp @@ -50,14 +50,14 @@ void startApp(const char *_app, int argc, const char **args) arg << app << URLs; if ( !dcop->call( "klauncher", "klauncher", function, data, replyType, replyData) ) { - qWarning( "call failed"); + tqWarning( "call failed"); exit(1); } else { TQDataStream reply(replyData, IO_ReadOnly); if ( replyType != "serviceResult" ) { - qWarning( "unexpected result '%s'", replyType.data()); + tqWarning( "unexpected result '%s'", replyType.data()); exit(1); } int result; @@ -66,7 +66,7 @@ void startApp(const char *_app, int argc, const char **args) reply >> result >> dcopName >> error; if (result != 0) { - qWarning("Error: %s", error.local8Bit().data()); + tqWarning("Error: %s", error.local8Bit().data()); exit(1); } if (!dcopName.isEmpty()) |