summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kxt/appview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/app_templates/kxt/appview.cpp')
-rw-r--r--languages/cpp/app_templates/kxt/appview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/languages/cpp/app_templates/kxt/appview.cpp b/languages/cpp/app_templates/kxt/appview.cpp
index 30d627fe..0c82dd25 100644
--- a/languages/cpp/app_templates/kxt/appview.cpp
+++ b/languages/cpp/app_templates/kxt/appview.cpp
@@ -6,8 +6,8 @@
#include <klocale.h>
#include <tqlabel.h>
-%{APPNAMELC}View::%{APPNAMELC}View(TQWidget *parent)
- : %{APPNAMELC}view_base(parent)
+%{APPNAMELC}View::%{APPNAMELC}View(TQWidget *tqparent)
+ : %{APPNAMELC}view_base(tqparent)
{
settingsChanged();
}
@@ -33,7 +33,7 @@ void %{APPNAMELC}View::settingsChanged()
sillyLabel->setPaletteForegroundColor( Settings::col_foreground() );
// i18n : internationalization
- sillyLabel->setText( i18n("This project is %1 days old").arg(Settings::val_time()) );
+ sillyLabel->setText( i18n("This project is %1 days old").tqarg(Settings::val_time()) );
emit signalChangeStatusbar( i18n("Settings changed") );
}