summaryrefslogtreecommitdiffstats
path: root/kode/kwsdl/kung/dispatcher.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:35:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:35:40 -0600
commit17e2ed52dbf8fac39a04331da02b9572e9e2e304 (patch)
treecd0d57c975a55e05aac71794b363748f24625875 /kode/kwsdl/kung/dispatcher.cpp
parenta684ecdeceae222d5aa930478b7bf59a3b7cae7f (diff)
downloadtdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.tar.gz
tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.zip
Rename additional global TQt functions
Diffstat (limited to 'kode/kwsdl/kung/dispatcher.cpp')
-rw-r--r--kode/kwsdl/kung/dispatcher.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kode/kwsdl/kung/dispatcher.cpp b/kode/kwsdl/kung/dispatcher.cpp
index 9d2ecc239..58ac17d19 100644
--- a/kode/kwsdl/kung/dispatcher.cpp
+++ b/kode/kwsdl/kung/dispatcher.cpp
@@ -71,7 +71,7 @@ void Dispatcher::run()
void Dispatcher::nextMessage()
{
if ( !mConversationManager ) {
- qDebug( "No conversation manager set... aborting" );
+ tqDebug( "No conversation manager set... aborting" );
return;
}
@@ -115,7 +115,7 @@ void Dispatcher::nextMessage()
body.appendChild( method );
if ( mTransport ) {
- qDebug( "%s", doc.toString( 2 ).latin1() );
+ tqDebug( "%s", doc.toString( 2 ).latin1() );
mTransport->query( doc.toString( 2 ) );
}
} else
@@ -124,7 +124,7 @@ void Dispatcher::nextMessage()
void Dispatcher::result( const TQString &xml )
{
- qDebug( "Got data %s", xml.latin1() );
+ tqDebug( "Got data %s", xml.latin1() );
KWSDL::Message message = mWSDL.findOutputMessage( mCurrentMessage );
InputField *field = new PageInputField( message.name(), message );