diff options
Diffstat (limited to 'kdevdesigner/designer/designeraction.h')
-rw-r--r-- | kdevdesigner/designer/designeraction.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kdevdesigner/designer/designeraction.h b/kdevdesigner/designer/designeraction.h index 85efef6b..eade6982 100644 --- a/kdevdesigner/designer/designeraction.h +++ b/kdevdesigner/designer/designeraction.h @@ -24,7 +24,7 @@ class DesignerAction : public TQAction { -Q_OBJECT +TQ_OBJECT public: DesignerAction(TQObject *parent = 0, const char *name = 0) @@ -33,9 +33,9 @@ public: :TQAction(menuText, accel, parent, name) {} DesignerAction ( const TQIconSet & icon, const TQString & menuText, TQKeySequence accel, TQObject * parent, const char * name = 0 ) :TQAction(icon, menuText, accel, parent, name) {} - DesignerAction ( const TQString & text, const TQIconSet & icon, const TQString & menuText, TQKeySequence accel, TQObject * parent, const char * name = 0, bool toggle = FALSE ) + DesignerAction ( const TQString & text, const TQIconSet & icon, const TQString & menuText, TQKeySequence accel, TQObject * parent, const char * name = 0, bool toggle = false ) :TQAction(text, icon, menuText, accel, parent, name, toggle) {} - DesignerAction ( const TQString & text, const TQString & menuText, TQKeySequence accel, TQObject * parent, const char * name = 0, bool toggle = FALSE ) + DesignerAction ( const TQString & text, const TQString & menuText, TQKeySequence accel, TQObject * parent, const char * name = 0, bool toggle = false ) :TQAction(text, menuText, accel, parent, name, toggle) {} DesignerAction ( TQObject * parent, const char * name, bool toggle ) :TQAction(parent, name, toggle) {} |