diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:50:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:50:21 -0600 |
commit | 3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12 (patch) | |
tree | 89de88213bd261e4ccaade899ab2d6ec34b3a5a7 /kmail/listjob.cpp | |
parent | 1dad5f662a09dfc5cc041caffe0f674044a4dcec (diff) | |
download | tdepim-3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12.tar.gz tdepim-3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'kmail/listjob.cpp')
-rw-r--r-- | kmail/listjob.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmail/listjob.cpp b/kmail/listjob.cpp index 29dd8d8b0..1d8ac380e 100644 --- a/kmail/listjob.cpp +++ b/kmail/listjob.cpp @@ -44,7 +44,7 @@ using KPIM::ProgressManager; #include <kio/global.h> #include <klocale.h> -#include <tqstylesheet.h> +#include <stylesheet.h> #include <stdlib.h> @@ -109,16 +109,16 @@ void ListJob::execute() jd.curNamespace = mNamespace; if ( mParentProgressItem ) { - TQString escapedtqStatus = mDestFolder ? TQStyleSheet::escape( mDestFolder->prettyURL() ) + TQString escapedStatus = mDestFolder ? TQStyleSheet::escape( mDestFolder->prettyURL() ) : TQString(); jd.progressItem = ProgressManager::createProgressItem( mParentProgressItem, "ListDir" + ProgressManager::getUniqueID(), - escapedtqStatus, + escapedStatus, i18n("retrieving folders"), false, mAccount->useSSL() || mAccount->useTLS() ); - mParentProgressItem->setqStatus( escapedtqStatus ); + mParentProgressItem->seStatus( escapedStatus ); } // 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: " ).tqarg((*it).path), + i18n( "Error while listing folder %1: " ).arg((*it).path), true ); } else { |