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 | |
parent | 8fc8811ef6079a15decd33f1ea5d95dd718e4557 (diff) | |
download | tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.tar.gz tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.zip |
Rename additional global TQt functions
Diffstat (limited to 'dcop/client')
-rw-r--r-- | dcop/client/dcop.cpp | 20 | ||||
-rw-r--r-- | dcop/client/dcopfind.cpp | 14 | ||||
-rw-r--r-- | dcop/client/dcopstart.cpp | 6 | ||||
-rw-r--r-- | dcop/client/marshall.cpp | 8 |
4 files changed, 24 insertions, 24 deletions
diff --git a/dcop/client/dcop.cpp b/dcop/client/dcop.cpp index baa2a7142..74e6911f2 100644 --- a/dcop/client/dcop.cpp +++ b/dcop/client/dcop.cpp @@ -102,7 +102,7 @@ void queryApplications(const TQCString &filter) if ( !dcop->isAttached() ) { - qWarning( "server not accessible" ); + tqWarning( "server not accessible" ); exit(1); } } @@ -135,9 +135,9 @@ void queryObjects( const TQCString &app, const TQCString &filter ) if ( !ok ) { if (!dcop->isApplicationRegistered(app)) - qWarning( "No such application: '%s'", app.data()); + tqWarning( "No such application: '%s'", app.data()); else - qWarning( "Application '%s' not accessible", app.data() ); + tqWarning( "Application '%s' not accessible", app.data() ); exit(1); } } @@ -151,7 +151,7 @@ void queryFunctions( const char* app, const char* obj ) } if ( !ok ) { - qWarning( "object '%s' in application '%s' not accessible", obj, app ); + tqWarning( "object '%s' in application '%s' not accessible", obj, app ); exit( 1 ); } } @@ -164,7 +164,7 @@ int callFunction( const char* app, const char* obj, const char* func, const QCSt if ( right < left ) { - qWarning( "parentheses do not match" ); + tqWarning( "parentheses do not match" ); return( 1 ); } @@ -177,7 +177,7 @@ int callFunction( const char* app, const char* obj, const char* func, const QCSt goto doit; if ( !ok ) { - qWarning( "object not accessible" ); + tqWarning( "object not accessible" ); return( 1 ); } for ( QCStringList::Iterator it = funcs.begin(); it != funcs.end(); ++it ) { @@ -205,7 +205,7 @@ int callFunction( const char* app, const char* obj, const char* func, const QCSt } if ( realfunc.isEmpty() ) { - qWarning("no such function"); + tqWarning("no such function"); return( 1 ); } f = realfunc; @@ -257,7 +257,7 @@ int callFunction( const char* app, const char* obj, const char* func, const QCSt if ( s < static_cast<int>(partl.count())-1) { - qWarning("The argument `%s' seems syntactically wrong.", + tqWarning("The argument `%s' seems syntactically wrong.", lt.latin1()); } if ( s == static_cast<int>(partl.count())-1) @@ -294,12 +294,12 @@ int callFunction( const char* app, const char* obj, const char* func, const QCSt if ( i != args.count() ) { - qWarning( "arguments do not match" ); + tqWarning( "arguments do not match" ); return( 1 ); } if ( !dcop->call( app, obj, f.latin1(), data, replyType, replyData) ) { - qWarning( "call failed"); + tqWarning( "call failed"); return( 1 ); } else { TQDataStream reply(replyData, IO_ReadOnly); diff --git a/dcop/client/dcopfind.cpp b/dcop/client/dcopfind.cpp index cd3e4d517..d12cecddf 100644 --- a/dcop/client/dcopfind.cpp +++ b/dcop/client/dcopfind.cpp @@ -46,7 +46,7 @@ bool findObject( const char* app, const char* obj, const char* func, QCStringLis if ( right < left ) { - qWarning( "parentheses do not match" ); + tqWarning( "parentheses do not match" ); exit(1); } @@ -93,7 +93,7 @@ bool findObject( const char* app, const char* obj, const char* func, QCStringLis if (s<(int)partl.count()-1) { - qWarning("The argument `%s' seems syntactically wrong.", + tqWarning("The argument `%s' seems syntactically wrong.", lt.latin1()); } if (s==(int)partl.count()-1) @@ -121,7 +121,7 @@ bool findObject( const char* app, const char* obj, const char* func, QCStringLis } if ( types.count() != args.count() ) { - qWarning( "arguments do not match" ); + tqWarning( "arguments do not match" ); exit(1); } @@ -133,7 +133,7 @@ bool findObject( const char* app, const char* obj, const char* func, QCStringLis marshall(arg, args, i, *it); } if ( (uint) i != args.count() ) { - qWarning( "arguments do not match" ); + tqWarning( "arguments do not match" ); exit(1); } @@ -168,14 +168,14 @@ bool launchApp(TQString app) if ( !dcop->call( "klauncher", "klauncher", "start_service_by_desktop_name(TQString,TQStringList)", data, replyType, replyData) ) { - qWarning( "call to klauncher failed."); + tqWarning( "call to klauncher failed."); return false; } TQDataStream reply(replyData, IO_ReadOnly); if ( replyType != "serviceResult" ) { - qWarning( "unexpected result '%s' from klauncher.", replyType.data()); + tqWarning( "unexpected result '%s' from klauncher.", replyType.data()); return false; } int result; @@ -184,7 +184,7 @@ bool launchApp(TQString app) reply >> result >> dcopName >> error; if (result != 0) { - qWarning("Error starting '%s': %s", app.local8Bit().data(), error.local8Bit().data()); + tqWarning("Error starting '%s': %s", app.local8Bit().data(), error.local8Bit().data()); return false; } return true; 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()) diff --git a/dcop/client/marshall.cpp b/dcop/client/marshall.cpp index e848ac761..c78a1569d 100644 --- a/dcop/client/marshall.cpp +++ b/dcop/client/marshall.cpp @@ -273,7 +273,7 @@ void marshall( TQDataStream &arg, QCStringList args, uint &i, TQString type ) { if( i >= args.count() ) { - qWarning("Not enough arguments (expected %d, got %d).", i, args.count()); + tqWarning("Not enough arguments (expected %d, got %d).", i, args.count()); exit(1); } TQString s = TQString::fromLocal8Bit( args[ i ] ); @@ -368,7 +368,7 @@ void marshall( TQDataStream &arg, QCStringList args, uint &i, TQString type ) while (true) { if( j > args.count() ) { - qWarning("List end-delimiter '%s' not found.", delim.latin1()); + tqWarning("List end-delimiter '%s' not found.", delim.latin1()); exit(1); } if( TQString::fromLocal8Bit( args[ j ] ) == delim ) @@ -381,7 +381,7 @@ void marshall( TQDataStream &arg, QCStringList args, uint &i, TQString type ) while (true) { if( i > args.count() ) { - qWarning("List end-delimiter '%s' not found.", delim.latin1()); + tqWarning("List end-delimiter '%s' not found.", delim.latin1()); exit(1); } if( TQString::fromLocal8Bit( args[ i ] ) == delim ) @@ -389,7 +389,7 @@ void marshall( TQDataStream &arg, QCStringList args, uint &i, TQString type ) marshall( arg, args, i, type ); } } else { - qWarning( "cannot handle datatype '%s'", type.latin1() ); + tqWarning( "cannot handle datatype '%s'", type.latin1() ); exit(1); } i++; |