summaryrefslogtreecommitdiffstats
path: root/kmail/kmaccount.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/kmaccount.cpp')
-rw-r--r--kmail/kmaccount.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/kmaccount.cpp b/kmail/kmaccount.cpp
index 825e0cef9..a15def1f9 100644
--- a/kmail/kmaccount.cpp
+++ b/kmail/kmaccount.cpp
@@ -51,8 +51,8 @@ KMPrecommand::KMPrecommand(const TQString &precommand, TQObject *parent)
mPrecommandProcess.setUseShell(true);
mPrecommandProcess << precommand;
- connect(&mPrecommandProcess, TQT_SIGNAL(processExited(TDEProcess *)),
- TQT_SLOT(precommandExited(TDEProcess *)));
+ connect(&mPrecommandProcess, TQ_SIGNAL(processExited(TDEProcess *)),
+ TQ_SLOT(precommandExited(TDEProcess *)));
}
//-----------------------------------------------------------------------------
@@ -207,7 +207,7 @@ void KMAccount::sendReceipt(KMMessage* aMsg)
KMMessage *newMsg = aMsg->createDeliveryReceipt();
if (newMsg) {
mReceipts.append(newMsg);
- TQTimer::singleShot( 0, this, TQT_SLOT( sendReceipts() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( sendReceipts() ) );
}
}
@@ -351,7 +351,7 @@ void KMAccount::installTimer()
if(!mTimer)
{
mTimer = new TQTimer(0, "mTimer");
- connect(mTimer,TQT_SIGNAL(timeout()),TQT_SLOT(mailCheck()));
+ connect(mTimer,TQ_SIGNAL(timeout()),TQ_SLOT(mailCheck()));
}
else
{
@@ -380,8 +380,8 @@ bool KMAccount::runPrecommand(const TQString &precommand)
BroadcastStatus::instance()->setStatusMsg(
i18n("Executing precommand %1").arg(precommand ));
- connect(&precommandProcess, TQT_SIGNAL(finished(bool)),
- TQT_SLOT(precommandExited(bool)));
+ connect(&precommandProcess, TQ_SIGNAL(finished(bool)),
+ TQ_SLOT(precommandExited(bool)));
kdDebug(5006) << "Running precommand " << precommand << endl;
if (!precommandProcess.start()) return false;