diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:59:01 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:59:01 -0600 |
commit | 716a5de8870d7c02bb4d0aed72f30291b17b763a (patch) | |
tree | 29e58b213ead28151ccf7eb33d12c968ea844120 /kmail/quotajobs.h | |
parent | 0e00c0a86a4c9d7e80c7b66d91940cc7dcb79f78 (diff) | |
download | tdepim-716a5de8870d7c02bb4d0aed72f30291b17b763a.tar.gz tdepim-716a5de8870d7c02bb4d0aed72f30291b17b763a.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kmail/quotajobs.h')
-rw-r--r-- | kmail/quotajobs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/quotajobs.h b/kmail/quotajobs.h index 58b2af57..e53a4f18 100644 --- a/kmail/quotajobs.h +++ b/kmail/quotajobs.h @@ -73,8 +73,8 @@ class QuotaInfo { if ( isValid() && !isEmpty() ) { readConfig(); int factor = static_cast<int> ( pow( 1000, mFactor ) ); - return i18n("%1 of %2 %3 used").tqarg( mCurrent.toInt() / factor ) - .tqarg( mMax.toInt() / factor ).tqarg( mUnits ); + return i18n("%1 of %2 %3 used").arg( mCurrent.toInt() / factor ) + .arg( mMax.toInt() / factor ).arg( mUnits ); } return TQString(); } |