From 4fb897b216c41c13f128c71bcc66f60e2dc601c4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Mar 2012 13:33:40 -0600 Subject: Rename additional global TQt functions --- dcop/dcopref.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'dcop/dcopref.cpp') diff --git a/dcop/dcopref.cpp b/dcop/dcopref.cpp index bb39c109b..6c4ca180e 100644 --- a/dcop/dcopref.cpp +++ b/dcop/dcopref.cpp @@ -41,7 +41,7 @@ bool DCOPReply::typeCheck( const char* t, bool warn ) return true; if( warn || strcmp( t, "" )) // type not listed in dcoptypes.h - qWarning( "WARNING: DCOPReply<%s>: cast to '%s' error", + tqWarning( "WARNING: DCOPReply<%s>: cast to '%s' error", STR( type ), t ); return false; } @@ -57,7 +57,7 @@ DCOPReply DCOPRef::callInternal( const TQCString& fun, const TQCString& args, co { DCOPReply reply; if ( isNull() ) { - qWarning( "DCOPRef: call '%s' on null reference error", + tqWarning( "DCOPRef: call '%s' on null reference error", STR( fun ) ); return reply; } @@ -65,13 +65,13 @@ DCOPReply DCOPRef::callInternal( const TQCString& fun, const TQCString& args, co if ( fun.find('(') == -1 ) { sig += args; if( args.find( "::call(\"%s\",%s", STR(m_app), STR(m_obj), STR(fun), args.data()+1 ); } DCOPClient* dc = dcopClient(); if ( !dc || !dc->isAttached() ) { - qWarning( "DCOPRef::call(): no DCOP client or client not attached error" ); + tqWarning( "DCOPRef::call(): no DCOP client or client not attached error" ); return reply; } dc->call( m_app, m_obj, sig, data, reply.type, reply.data, useEventLoop == UseEventLoop, timeout ); @@ -81,7 +81,7 @@ DCOPReply DCOPRef::callInternal( const TQCString& fun, const TQCString& args, co bool DCOPRef::sendInternal( const TQCString& fun, const TQCString& args, const TQByteArray& data ) { if ( isNull() ) { - qWarning( "DCOPRef: send '%s' on null reference error", + tqWarning( "DCOPRef: send '%s' on null reference error", STR( fun ) ); return false; } @@ -90,13 +90,13 @@ bool DCOPRef::sendInternal( const TQCString& fun, const TQCString& args, const T if ( fun.find('(') == -1 ) { sig += args; if( args.find( "::send(\"%s\",%s", STR(m_app), STR(m_obj), STR(fun), args.data()+1 ); } DCOPClient* dc = dcopClient(); if ( !dc || !dc->isAttached() ) { - qWarning( "DCOPRef::send(): no DCOP client or client not attached error" ); + tqWarning( "DCOPRef::send(): no DCOP client or client not attached error" ); return false; } return dc->send( m_app, m_obj, sig, data ); -- cgit v1.2.1