diff options
Diffstat (limited to 'languages/cpp/app_templates/kicker/applet.cpp')
-rw-r--r-- | languages/cpp/app_templates/kicker/applet.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/languages/cpp/app_templates/kicker/applet.cpp b/languages/cpp/app_templates/kicker/applet.cpp index 5345ac0c..29ec3d1d 100644 --- a/languages/cpp/app_templates/kicker/applet.cpp +++ b/languages/cpp/app_templates/kicker/applet.cpp @@ -1,6 +1,6 @@ %{CPP_TEMPLATE} -#include <qlcdnumber.h> +#include <tqlcdnumber.h> #include <kglobal.h> #include <klocale.h> #include <kconfig.h> @@ -10,12 +10,12 @@ #include "%{APPNAMELC}.h" -%{APPNAME}::%{APPNAME}(const QString& configFile, Type type, int actions, QWidget *parent, const char *name) +%{APPNAME}::%{APPNAME}(const TQString& configFile, Type type, int actions, TQWidget *parent, const char *name) : KPanelApplet(configFile, type, actions, parent, name) { // Get the current application configuration handle ksConfig = config(); - QLCDNumber *w = new QLCDNumber(this); + TQLCDNumber *w = new TQLCDNumber(this); w->display(42); mainView = w; @@ -55,14 +55,14 @@ int %{APPNAME}::heightForWidth(int width) const return height(); } -void %{APPNAME}::resizeEvent(QResizeEvent *e) +void %{APPNAME}::resizeEvent(TQResizeEvent *e) { } extern "C" { - KPanelApplet* init( QWidget *parent, const QString& configFile) + KPanelApplet* init( TQWidget *parent, const TQString& configFile) { KGlobal::locale()->insertCatalogue("%{APPNAMELC}"); return new %{APPNAME}(configFile, KPanelApplet::Normal, |