summaryrefslogtreecommitdiffstats
path: root/kmail/subscriptiondialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-14 12:33:20 +0900
committerMichele Calgaro <[email protected]>2024-01-14 12:43:48 +0900
commit3b3f9ec8f31978030c17309fae48335bea5c1587 (patch)
tree0b493383a1501860371aacd792ec6fc08d595824 /kmail/subscriptiondialog.cpp
parent99e6e1d1f43610c3573e9824a2a8a38f69930cd0 (diff)
downloadtdepim-3b3f9ec8f31978030c17309fae48335bea5c1587.tar.gz
tdepim-3b3f9ec8f31978030c17309fae48335bea5c1587.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kmail/subscriptiondialog.cpp')
-rw-r--r--kmail/subscriptiondialog.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kmail/subscriptiondialog.cpp b/kmail/subscriptiondialog.cpp
index 93f92a799..8687096c2 100644
--- a/kmail/subscriptiondialog.cpp
+++ b/kmail/subscriptiondialog.cpp
@@ -55,14 +55,14 @@ SubscriptionDialogBase::SubscriptionDialogBase( TQWidget *parent, const TQString
hideNewOnlyCheckbox();
// ok-button
- connect(this, TQT_SIGNAL(okClicked()), TQT_SLOT(slotSave()));
+ connect(this, TQ_SIGNAL(okClicked()), TQ_SLOT(slotSave()));
// reload-list button
- connect(this, TQT_SIGNAL(user1Clicked()), TQT_SLOT(slotLoadFolders()));
+ connect(this, TQ_SIGNAL(user1Clicked()), TQ_SLOT(slotLoadFolders()));
// get the folders, delayed execution style, otherwise there's bother
// with virtuals from ctors and whatnot
- TQTimer::singleShot(0, this, TQT_SLOT(slotLoadFolders()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotLoadFolders()));
}
//------------------------------------------------------------------------------
@@ -234,8 +234,8 @@ void SubscriptionDialogBase::slotLoadFolders()
{
// We'll wait for the connectionResult signal from the account.
kdDebug(5006) << "SubscriptionDialog - waiting for connection" << endl;
- connect( ai, TQT_SIGNAL( connectionResult(int, const TQString&) ),
- this, TQT_SLOT( slotConnectionResult(int, const TQString&) ) );
+ connect( ai, TQ_SIGNAL( connectionResult(int, const TQString&) ),
+ this, TQ_SLOT( slotConnectionResult(int, const TQString&) ) );
return;
}
// clear the views
@@ -286,9 +286,9 @@ void SubscriptionDialogBase::processNext()
// kdDebug(5006) << "process " << mCurrentNamespace << ",subscribed=" << mSubscribed << endl;
ListJob* job = new ListJob( ai, type, 0, ai->addPathToNamespace( mCurrentNamespace ), completeListing );
- connect( job, TQT_SIGNAL(receivedFolders(const TQStringList&, const TQStringList&,
+ connect( job, TQ_SIGNAL(receivedFolders(const TQStringList&, const TQStringList&,
const TQStringList&, const TQStringList&, const ImapAccountBase::jobData&)),
- this, TQT_SLOT(slotListDirectory(const TQStringList&, const TQStringList&,
+ this, TQ_SLOT(slotListDirectory(const TQStringList&, const TQStringList&,
const TQStringList&, const TQStringList&, const ImapAccountBase::jobData&)));
job->start();
}
@@ -418,7 +418,7 @@ void SubscriptionDialog::processItems()
if (done == 1000)
{
emit listChanged();
- TQTimer::singleShot(0, this, TQT_SLOT(processItems()));
+ TQTimer::singleShot(0, this, TQ_SLOT(processItems()));
return;
}
++mCount;