summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kicker/applet.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/app_templates/kicker/applet.h')
-rw-r--r--languages/cpp/app_templates/kicker/applet.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/languages/cpp/app_templates/kicker/applet.h b/languages/cpp/app_templates/kicker/applet.h
index b078b2a4..ba4d6cd4 100644
--- a/languages/cpp/app_templates/kicker/applet.h
+++ b/languages/cpp/app_templates/kicker/applet.h
@@ -8,7 +8,7 @@
#endif
#include <kpanelapplet.h>
-#include <qstring.h>
+#include <tqstring.h>
#include <kconfig.h>
@@ -26,8 +26,8 @@ public:
* @param parent The pointer to the parent widget handed over in the factory function.
* @param name A Qt object name for your applet.
**/
- %{APPNAME}(const QString& configFile, Type t = Normal, int actions = 0,
- QWidget *parent = 0, const char *name = 0);
+ %{APPNAME}(const TQString& configFile, Type t = Normal, int actions = 0,
+ TQWidget *parent = 0, const char *name = 0);
/** destructor */
~%{APPNAME}();
@@ -97,11 +97,11 @@ public:
virtual void preferences();
protected:
- void resizeEvent(QResizeEvent *);
+ void resizeEvent(TQResizeEvent *);
private:
KConfig *ksConfig;
- QWidget *mainView;
+ TQWidget *mainView;
};
#endif