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-16 19:01:53 +0900 |
commit | b0f8eef013163b2098c2bb07e93cb9b194338b80 (patch) | |
tree | c35221250699030822f3c616b393f77e1ce47036 /kmail/sievedebugdialog.cpp | |
parent | c2138cbe92142437d50f2e6cec6f8909da959234 (diff) | |
download | tdepim-b0f8eef013163b2098c2bb07e93cb9b194338b80.tar.gz tdepim-b0f8eef013163b2098c2bb07e93cb9b194338b80.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 3b3f9ec8f31978030c17309fae48335bea5c1587)
Diffstat (limited to 'kmail/sievedebugdialog.cpp')
-rw-r--r-- | kmail/sievedebugdialog.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kmail/sievedebugdialog.cpp b/kmail/sievedebugdialog.cpp index cd3ebdfc..09d7d3fa 100644 --- a/kmail/sievedebugdialog.cpp +++ b/kmail/sievedebugdialog.cpp @@ -206,7 +206,7 @@ SieveDebugDialog::SieveDebugDialog( TQWidget *parent, const char *name ) setInitialSize( TQSize( 640, 480 ) ); if ( !mAccountList.isEmpty() ) - TQTimer::singleShot( 0, this, TQT_SLOT( slotDiagNextAccount() ) ); + TQTimer::singleShot( 0, this, TQ_SLOT( slotDiagNextAccount() ) ); } SieveDebugDialog::~SieveDebugDialog() @@ -268,8 +268,8 @@ void SieveDebugDialog::slotDiagNextAccount() mSieveJob = SieveJob::list( mUrl ); - connect( mSieveJob, TQT_SIGNAL( gotList( KMail::SieveJob *, bool, const TQStringList &, const TQString & ) ), - TQT_SLOT( slotGetScriptList( KMail::SieveJob *, bool, const TQStringList &, const TQString & ) ) ); + connect( mSieveJob, TQ_SIGNAL( gotList( KMail::SieveJob *, bool, const TQStringList &, const TQString & ) ), + TQ_SLOT( slotGetScriptList( KMail::SieveJob *, bool, const TQStringList &, const TQString & ) ) ); // Bypass the singleShot timer -- it's fired when we get our data return; @@ -279,7 +279,7 @@ void SieveDebugDialog::slotDiagNextAccount() } // Handle next account async - TQTimer::singleShot( 0, this, TQT_SLOT( slotDiagNextAccount() ) ); + TQTimer::singleShot( 0, this, TQ_SLOT( slotDiagNextAccount() ) ); } void SieveDebugDialog::slotDiagNextScript() @@ -288,7 +288,7 @@ void SieveDebugDialog::slotDiagNextScript() { // Continue handling accounts instead mScriptList.clear(); - TQTimer::singleShot( 0, this, TQT_SLOT( slotDiagNextAccount() ) ); + TQTimer::singleShot( 0, this, TQ_SLOT( slotDiagNextAccount() ) ); return; } @@ -302,8 +302,8 @@ void SieveDebugDialog::slotDiagNextScript() mSieveJob = SieveJob::get( mUrl ); - connect( mSieveJob, TQT_SIGNAL( gotScript( KMail::SieveJob *, bool, const TQString &, bool ) ), - TQT_SLOT( slotGetScript( KMail::SieveJob *, bool, const TQString &, bool ) ) ); + connect( mSieveJob, TQ_SIGNAL( gotScript( KMail::SieveJob *, bool, const TQString &, bool ) ), + TQ_SLOT( slotGetScript( KMail::SieveJob *, bool, const TQString &, bool ) ) ); } void SieveDebugDialog::slotGetScript( SieveJob * /* job */, bool success, @@ -328,7 +328,7 @@ void SieveDebugDialog::slotGetScript( SieveJob * /* job */, bool success, } // Fetch next script - TQTimer::singleShot( 0, this, TQT_SLOT( slotDiagNextScript() ) ); + TQTimer::singleShot( 0, this, TQ_SLOT( slotDiagNextScript() ) ); } void SieveDebugDialog::slotGetScriptList( SieveJob *job, bool success, @@ -367,7 +367,7 @@ void SieveDebugDialog::slotGetScriptList( SieveJob *job, bool success, } // Handle next job: dump scripts for this server - TQTimer::singleShot( 0, this, TQT_SLOT( slotDiagNextScript() ) ); + TQTimer::singleShot( 0, this, TQ_SLOT( slotDiagNextScript() ) ); } void SieveDebugDialog::slotDialogOk() |