diff options
Diffstat (limited to 'languages/cpp/app_templates/kicker/applet.h')
-rw-r--r-- | languages/cpp/app_templates/kicker/applet.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/languages/cpp/app_templates/kicker/applet.h b/languages/cpp/app_templates/kicker/applet.h index ba4d6cd4..b11b1aa9 100644 --- a/languages/cpp/app_templates/kicker/applet.h +++ b/languages/cpp/app_templates/kicker/applet.h @@ -15,6 +15,7 @@ class %{APPNAME} : public KPanelApplet { Q_OBJECT + TQ_OBJECT public: /** @@ -23,11 +24,11 @@ public: * @param configFile The configFile handed over in the factory function. * @param Type The applet @ref type(). * @param actions Standard RMB menu actions supported by the applet (see @ref action() ). - * @param parent The pointer to the parent widget handed over in the factory function. - * @param name A Qt object name for your applet. + * @param tqparent The pointer to the tqparent widget handed over in the factory function. + * @param name A TQt object name for your applet. **/ %{APPNAME}(const TQString& configFile, Type t = Normal, int actions = 0, - TQWidget *parent = 0, const char *name = 0); + TQWidget *tqparent = 0, const char *name = 0); /** destructor */ ~%{APPNAME}(); |