summaryrefslogtreecommitdiffstats
path: root/kdirstat/kcleanupcollection.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:36:22 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:36:22 -0600
commit3a828bee4c03baeeb91e053f66cd12920584ef16 (patch)
treec23b297acee104bf2aa7a1ba99c7e81ea4d1c75b /kdirstat/kcleanupcollection.cpp
parent56e137ce23e6a60bbf92b9bf6e66e94a97aa362b (diff)
downloadkdirstat-3a828bee4c03baeeb91e053f66cd12920584ef16.tar.gz
kdirstat-3a828bee4c03baeeb91e053f66cd12920584ef16.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'kdirstat/kcleanupcollection.cpp')
-rw-r--r--kdirstat/kcleanupcollection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kdirstat/kcleanupcollection.cpp b/kdirstat/kcleanupcollection.cpp
index 627b979..39f0b1c 100644
--- a/kdirstat/kcleanupcollection.cpp
+++ b/kdirstat/kcleanupcollection.cpp
@@ -228,10 +228,10 @@ KCleanupCollection::addUserCleanups( int number )
if ( _nextUserCleanupNo <= 9 )
// Provide a keyboard shortcut for cleanup #0..#9
- title=i18n( "User Defined Cleanup #&%1" ).tqarg(_nextUserCleanupNo);
+ title=i18n( "User Defined Cleanup #&%1" ).arg(_nextUserCleanupNo);
else
// No keyboard shortcuts for cleanups #10.. - they would be duplicates
- title=i18n( "User Defined Cleanup #%1" ).tqarg(_nextUserCleanupNo);
+ title=i18n( "User Defined Cleanup #%1" ).arg(_nextUserCleanupNo);
_nextUserCleanupNo++;