diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-14 12:33:20 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-14 12:43:48 +0900 |
commit | 3b3f9ec8f31978030c17309fae48335bea5c1587 (patch) | |
tree | 0b493383a1501860371aacd792ec6fc08d595824 /kode/kwsdl/kung/dispatcher.cpp | |
parent | 99e6e1d1f43610c3573e9824a2a8a38f69930cd0 (diff) | |
download | tdepim-3b3f9ec8f31978030c17309fae48335bea5c1587.tar.gz tdepim-3b3f9ec8f31978030c17309fae48335bea5c1587.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kode/kwsdl/kung/dispatcher.cpp')
-rw-r--r-- | kode/kwsdl/kung/dispatcher.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kode/kwsdl/kung/dispatcher.cpp b/kode/kwsdl/kung/dispatcher.cpp index 5c65d0c4..7b2ad477 100644 --- a/kode/kwsdl/kung/dispatcher.cpp +++ b/kode/kwsdl/kung/dispatcher.cpp @@ -57,10 +57,10 @@ void Dispatcher::setWSDL( const KWSDL::WSDL &wsdl ) mConversationManager = new GeneralConversationManager( mWSDL ); mTransport = new Transport( mWSDL.service().ports().first().mLocation ); - connect( mTransport, TQT_SIGNAL( result( const TQString& ) ), - this, TQT_SLOT( result( const TQString& ) ) ); - connect( mTransport, TQT_SIGNAL( error( const TQString& ) ), - this, TQT_SLOT( error( const TQString& ) ) ); + connect( mTransport, TQ_SIGNAL( result( const TQString& ) ), + this, TQ_SLOT( result( const TQString& ) ) ); + connect( mTransport, TQ_SIGNAL( error( const TQString& ) ), + this, TQ_SLOT( error( const TQString& ) ) ); } void Dispatcher::run() @@ -140,14 +140,14 @@ void Dispatcher::result( const TQString &xml ) mLastMessage = mCurrentMessage; - TQTimer::singleShot( 0, this, TQT_SLOT( nextMessage() ) ); + TQTimer::singleShot( 0, this, TQ_SLOT( nextMessage() ) ); } void Dispatcher::error( const TQString &errorMsg ) { KMessageBox::error( 0, errorMsg ); - TQTimer::singleShot( 0, this, TQT_SLOT( nextMessage() ) ); + TQTimer::singleShot( 0, this, TQ_SLOT( nextMessage() ) ); } #include "dispatcher.moc" |