summaryrefslogtreecommitdiffstats
path: root/kmail/listjob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/listjob.cpp')
-rw-r--r--kmail/listjob.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/listjob.cpp b/kmail/listjob.cpp
index 75e4dee5..6c189293 100644
--- a/kmail/listjob.cpp
+++ b/kmail/listjob.cpp
@@ -76,8 +76,8 @@ void ListJob::execute()
{
// We'll wait for the connectionResult signal from the account.
kdDebug(5006) << "ListJob - waiting for connection" << endl;
- connect( mAccount, TQT_SIGNAL( connectionResult(int, const TQString&) ),
- this, TQT_SLOT( slotConnectionResult(int, const TQString&) ) );
+ connect( mAccount, TQ_SIGNAL( connectionResult(int, const TQString&) ),
+ this, TQ_SLOT( slotConnectionResult(int, const TQString&) ) );
return;
}
// this is needed until we have a common base class for d(imap)
@@ -145,10 +145,10 @@ void ListJob::execute()
TDEIO::SimpleJob *job = TDEIO::listDir( url, false );
TDEIO::Scheduler::assignJobToSlave( mAccount->slave(), job );
mAccount->insertJob( job, jd );
- connect( job, TQT_SIGNAL(result(TDEIO::Job *)),
- this, TQT_SLOT(slotListResult(TDEIO::Job *)) );
- connect( job, TQT_SIGNAL(entries(TDEIO::Job *, const TDEIO::UDSEntryList &)),
- this, TQT_SLOT(slotListEntries(TDEIO::Job *, const TDEIO::UDSEntryList &)) );
+ connect( job, TQ_SIGNAL(result(TDEIO::Job *)),
+ this, TQ_SLOT(slotListResult(TDEIO::Job *)) );
+ connect( job, TQ_SIGNAL(entries(TDEIO::Job *, const TDEIO::UDSEntryList &)),
+ this, TQ_SLOT(slotListEntries(TDEIO::Job *, const TDEIO::UDSEntryList &)) );
}
void ListJob::slotConnectionResult( int errorCode, const TQString& errorMsg )