diff options
Diffstat (limited to 'dcop/client/dcopfind.cpp')
-rw-r--r-- | dcop/client/dcopfind.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/dcop/client/dcopfind.cpp b/dcop/client/dcopfind.cpp index cd3e4d517..c8feb5936 100644 --- a/dcop/client/dcopfind.cpp +++ b/dcop/client/dcopfind.cpp @@ -38,11 +38,11 @@ static DCOPClient* dcop = 0; static bool bAppIdOnly = 0; static bool bLaunchApp = 0; -bool findObject( const char* app, const char* obj, const char* func, QCStringList args ) +bool tqfindObject( const char* app, const char* obj, const char* func, QCStringList args ) { - TQString f = func; // Qt is better with unicode strings, so use one. - int left = f.find( '(' ); - int right = f.find( ')' ); + TQString f = func; // Qt is better with tqunicode strings, so use one. + int left = f.tqfind( '(' ); + int right = f.tqfind( ')' ); if ( right < left ) { @@ -66,7 +66,7 @@ bool findObject( const char* app, const char* obj, const char* func, QCStringLis for ( TQStringList::Iterator it = types.begin(); it != types.end(); ++it ) { TQString lt = (*it).simplifyWhiteSpace(); - int s = lt.find(' '); + int s = lt.tqfind(' '); // If there are spaces in the name, there may be two // reasons: the parameter name is still there, ie. @@ -86,7 +86,7 @@ bool findObject( const char* app, const char* obj, const char* func, QCStringLis // s=1; - while (s < (int)partl.count() && intTypes.contains(partl[s])) + while (s < (int)partl.count() && intTypes.tqcontains(partl[s])) { s++; } @@ -139,7 +139,7 @@ bool findObject( const char* app, const char* obj, const char* func, QCStringLis TQCString foundApp; TQCString foundObj; - if ( dcop->findObject( app, obj, f.latin1(), data, foundApp, foundObj) ) + if ( dcop->tqfindObject( app, obj, f.latin1(), data, foundApp, foundObj) ) { if (bAppIdOnly) puts(foundApp.data()); @@ -192,7 +192,7 @@ bool launchApp(TQString app) void usage() { - fprintf( stderr, "Usage: dcopfind [-l] [-a] application [object [function [arg1] [arg2] [arg3] ... ] ] ] \n" ); + fprintf( stderr, "Usage: dcoptqfind [-l] [-a] application [object [function [arg1] [arg2] [arg3] ... ] ] ] \n" ); exit(0); } @@ -267,7 +267,7 @@ int main( int argc, char** argv ) QCStringList params; for( int i = 0; i < argc; i++ ) params.append( args[ i ] ); - bool ok = findObject( app, objid, function, params ); + bool ok = tqfindObject( app, objid, function, params ); if (ok) return 0; if (bLaunchApp) @@ -275,7 +275,7 @@ int main( int argc, char** argv ) ok = launchApp(app); if (!ok) return 2; - ok = findObject( app, objid, function, params ); + ok = tqfindObject( app, objid, function, params ); } return 1; |