diff options
Diffstat (limited to 'languages/cpp/app_templates/kxt/appview.h')
-rw-r--r-- | languages/cpp/app_templates/kxt/appview.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/languages/cpp/app_templates/kxt/appview.h b/languages/cpp/app_templates/kxt/appview.h index 45a10de7..5b69ae24 100644 --- a/languages/cpp/app_templates/kxt/appview.h +++ b/languages/cpp/app_templates/kxt/appview.h @@ -3,7 +3,7 @@ #ifndef _%{APPNAMEUC}VIEW_H_ #define _%{APPNAMEUC}VIEW_H_ -#include <qwidget.h> +#include <tqwidget.h> #include "%{APPNAMELC}view_base.h" @@ -26,7 +26,7 @@ public: /** * Default constructor */ - %{APPNAMELC}View(QWidget *parent); + %{APPNAMELC}View(TQWidget *parent); /** * Destructor @@ -37,12 +37,12 @@ signals: /** * Use this signal to change the content of the statusbar */ - void signalChangeStatusbar(const QString& text); + void signalChangeStatusbar(const TQString& text); /** * Use this signal to change the content of the caption */ - void signalChangeCaption(const QString& text); + void signalChangeCaption(const TQString& text); private slots: void switchColors(); |