summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/opietoday/examplepluginwidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/app_templates/opietoday/examplepluginwidget.h')
-rw-r--r--languages/cpp/app_templates/opietoday/examplepluginwidget.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/languages/cpp/app_templates/opietoday/examplepluginwidget.h b/languages/cpp/app_templates/opietoday/examplepluginwidget.h
index 26a72128..53a67b18 100644
--- a/languages/cpp/app_templates/opietoday/examplepluginwidget.h
+++ b/languages/cpp/app_templates/opietoday/examplepluginwidget.h
@@ -1,16 +1,16 @@
#ifndef %{APPNAME}_PLUGIN_WIDGET_H
#define %{APPNAME}_PLUGIN_WIDGET_H
-#include <qlayout.h>
+#include <tqlayout.h>
#include <opie/oclickablelabel.h>
-class %{APPNAME}Widget : public QWidget {
+class %{APPNAME}Widget : public TQWidget {
Q_OBJECT
public:
- %{APPNAME}Widget( QWidget *parent, const char *name );
+ %{APPNAME}Widget( TQWidget *parent, const char *name );
~%{APPNAME}Widget();
void refresh();
@@ -20,7 +20,7 @@ private slots:
private:
OClickableLabel* m_exampleLabel;
- QHBoxLayout* m_layout;
+ TQHBoxLayout* m_layout;
void readConfig();
void getInfo();
};