diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:35:39 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:35:39 -0600 |
commit | eba1d381626d92b860239417f21d813f02ee6394 (patch) | |
tree | a1d29560015d98b2ad5aa047f919b8a81e0e9c4b /src/app/configdialog.cpp | |
parent | d0bdd0d7a768f9935b521f3bd12a4cd72739b96f (diff) | |
download | gwenview-eba1d381626d92b860239417f21d813f02ee6394.tar.gz gwenview-eba1d381626d92b860239417f21d813f02ee6394.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/app/configdialog.cpp')
-rw-r--r-- | src/app/configdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/configdialog.cpp b/src/app/configdialog.cpp index d274188..a429095 100644 --- a/src/app/configdialog.cpp +++ b/src/app/configdialog.cpp @@ -247,7 +247,7 @@ void ConfigDialog::calculateCacheSize() { KURL url; url.setPath(ThumbnailLoadJob::thumbnailBaseDir()); unsigned long size=KDirSize::dirSize(url); - KMessageBox::information( this,i18n("Cache size is %1").tqarg(KIO::convertSize(size)) ); + KMessageBox::information( this,i18n("Cache size is %1").arg(KIO::convertSize(size)) ); } @@ -281,7 +281,7 @@ void ConfigDialog::emptyCache() { int response=KMessageBox::warningContinueCancel(this, "<qt>" + i18n("Are you sure you want to empty the thumbnail cache?" - " This will delete the folder <b>%1</b>.").tqarg(TQStyleSheet::escape(dir)) + "</qt>", + " This will delete the folder <b>%1</b>.").arg(TQStyleSheet::escape(dir)) + "</qt>", TQString(), KStdGuiItem::del()); |