summaryrefslogtreecommitdiffstats
path: root/kmail/listjob.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:59:50 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:59:50 -0600
commit9cc13dcbb01a96c9e60a07ca63c61d24b374f50d (patch)
treeab537a329b9613e11dce8195761f93ffe82aed24 /kmail/listjob.cpp
parent3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12 (diff)
downloadtdepim-9cc13dcbb01a96c9e60a07ca63c61d24b374f50d.tar.gz
tdepim-9cc13dcbb01a96c9e60a07ca63c61d24b374f50d.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12.
Diffstat (limited to 'kmail/listjob.cpp')
-rw-r--r--kmail/listjob.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kmail/listjob.cpp b/kmail/listjob.cpp
index 1d8ac380..29dd8d8b 100644
--- a/kmail/listjob.cpp
+++ b/kmail/listjob.cpp
@@ -44,7 +44,7 @@ using KPIM::ProgressManager;
#include <kio/global.h>
#include <klocale.h>
-#include <stylesheet.h>
+#include <tqstylesheet.h>
#include <stdlib.h>
@@ -109,16 +109,16 @@ void ListJob::execute()
jd.curNamespace = mNamespace;
if ( mParentProgressItem )
{
- TQString escapedStatus = mDestFolder ? TQStyleSheet::escape( mDestFolder->prettyURL() )
+ TQString escapedtqStatus = mDestFolder ? TQStyleSheet::escape( mDestFolder->prettyURL() )
: TQString();
jd.progressItem = ProgressManager::createProgressItem(
mParentProgressItem,
"ListDir" + ProgressManager::getUniqueID(),
- escapedStatus,
+ escapedtqStatus,
i18n("retrieving folders"),
false,
mAccount->useSSL() || mAccount->useTLS() );
- mParentProgressItem->seStatus( escapedStatus );
+ mParentProgressItem->setqStatus( escapedtqStatus );
}
// make the URL
@@ -174,7 +174,7 @@ void ListJob::slotListResult( KIO::Job* job )
if ( job->error() )
{
mAccount->handleJobError( job,
- i18n( "Error while listing folder %1: " ).arg((*it).path),
+ i18n( "Error while listing folder %1: " ).tqarg((*it).path),
true );
} else
{