diff options
Diffstat (limited to 'dcop/dcopref.cpp')
-rw-r--r-- | dcop/dcopref.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dcop/dcopref.cpp b/dcop/dcopref.cpp index c446eb0ee..bb39c109b 100644 --- a/dcop/dcopref.cpp +++ b/dcop/dcopref.cpp @@ -62,9 +62,9 @@ DCOPReply DCOPRef::callInternal( const TQCString& fun, const TQCString& args, co return reply; } TQCString sig = fun; - if ( fun.tqfind('(') == -1 ) { + if ( fun.find('(') == -1 ) { sig += args; - if( args.tqfind( "<unknown" ) != -1 ) + if( args.find( "<unknown" ) != -1 ) qWarning("DCOPRef: unknown type error " "<\"%s\",\"%s\">::call(\"%s\",%s", STR(m_app), STR(m_obj), STR(fun), args.data()+1 ); @@ -87,9 +87,9 @@ bool DCOPRef::sendInternal( const TQCString& fun, const TQCString& args, const T } Q_UNUSED( data ); TQCString sig = fun; - if ( fun.tqfind('(') == -1 ) { + if ( fun.find('(') == -1 ) { sig += args; - if( args.tqfind( "<unknown" ) != -1 ) + if( args.find( "<unknown" ) != -1 ) qWarning("DCOPRef: unknown type error " "<\"%s\",\"%s\">::send(\"%s\",%s", STR(m_app), STR(m_obj), STR(fun), args.data()+1 ); |