From 716a5de8870d7c02bb4d0aed72f30291b17b763a Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 19 Dec 2011 11:59:01 -0600 Subject: Remove additional unneeded tq method conversions --- kmail/folderviewtooltip.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'kmail/folderviewtooltip.h') diff --git a/kmail/folderviewtooltip.h b/kmail/folderviewtooltip.h index 096d22764..dfc3bbbaf 100644 --- a/kmail/folderviewtooltip.h +++ b/kmail/folderviewtooltip.h @@ -32,15 +32,15 @@ class FolderViewToolTip : public TQToolTip item->updateCount(); TQString tipText = i18n("%1
Total: %2
Unread: %3
Size: %4" ) - .tqarg( item->folder()->prettyURL().replace( " ", " " ) ) - .tqarg( item->totalCount() < 0 ? "-" : TQString::number( item->totalCount() ) ) - .tqarg( item->unreadCount() < 0 ? "-" : TQString::number( item->unreadCount() ) ) - .tqarg( KIO::convertSize( item->folderSize() ) ); + .arg( item->folder()->prettyURL().replace( " ", " " ) ) + .arg( item->totalCount() < 0 ? "-" : TQString::number( item->totalCount() ) ) + .arg( item->unreadCount() < 0 ? "-" : TQString::number( item->unreadCount() ) ) + .arg( KIO::convertSize( item->folderSize() ) ); if ( KMFolderCachedImap* imap = dynamic_cast( item->folder()->storage() ) ) { QuotaInfo info = imap->quotaInfo(); if ( info.isValid() && !info.isEmpty() ) - tipText += i18n("
Quota: %1").tqarg( info.toString() ); + tipText += i18n("
Quota: %1").arg( info.toString() ); } tip( TQRect( headerRect.left(), itemRect.top(), headerRect.width(), itemRect.height() ), tipText ); -- cgit v1.2.1