summaryrefslogtreecommitdiffstats
path: root/adept/libadept/application.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'adept/libadept/application.cpp')
-rw-r--r--adept/libadept/application.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/adept/libadept/application.cpp b/adept/libadept/application.cpp
index 7f836bf..71bbbbe 100644
--- a/adept/libadept/application.cpp
+++ b/adept/libadept/application.cpp
@@ -153,21 +153,21 @@ void Application::redo() {
TQString Application::changeString() {
component::State &s = cache().state();
return i18n( " Install %1, upgrade %2, remove %3 " )
- .tqarg( s.newInstallCount() ).tqarg( s.upgradeCount() )
- .tqarg( s.removeCount() );
+ .arg( s.newInstallCount() ).arg( s.upgradeCount() )
+ .arg( s.removeCount() );
}
TQString Application::statusString() {
component::State &s = cache().state();
return i18n( " %1 installed, %2 upgradable, %3 available " )
- .tqarg( s.installedCount() ).tqarg( s.upgradableCount() )
- .tqarg( s.availableCount() );
+ .arg( s.installedCount() ).arg( s.upgradableCount() )
+ .arg( s.availableCount() );
}
TQString Application::sizesString() {
TQString dl = cache().state().downloadSizeString();
TQString inst = cache().state().installSizeString();
- return i18n( " download: %1, installation: %2 " ).tqarg( dl ).tqarg( inst );
+ return i18n( " download: %1, installation: %2 " ).arg( dl ).arg( inst );
}
void Application::setStatusBar( KStatusBar *s ) {