summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/widgetaction.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdevdesigner/designer/widgetaction.h')
-rw-r--r--kdevdesigner/designer/widgetaction.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdevdesigner/designer/widgetaction.h b/kdevdesigner/designer/widgetaction.h
index 161bc8a0..b3c81368 100644
--- a/kdevdesigner/designer/widgetaction.h
+++ b/kdevdesigner/designer/widgetaction.h
@@ -31,20 +31,20 @@
class WidgetAction : public TQAction
{
- Q_OBJECT
+ TQ_OBJECT
public:
WidgetAction( const TQString &grp, TQObject* parent,
- const char* name = 0, bool toggle = FALSE )
+ const char* name = 0, bool toggle = false )
: TQAction( parent, name, toggle ) { init( grp ); }
WidgetAction( const TQString &grp, const TQString& text,
const TQIconSet& icon, const TQString& menuText, TQKeySequence accel,
- TQObject* parent, const char* name = 0, bool toggle = FALSE )
+ TQObject* parent, const char* name = 0, bool toggle = false )
: TQAction( text, icon, menuText, accel, parent, name, toggle ) { init( grp ); }
WidgetAction( const TQString &grp, const TQString& text,
const TQString& menuText, TQKeySequence accel, TQObject* parent,
- const char* name = 0, bool toggle = FALSE )
+ const char* name = 0, bool toggle = false )
: TQAction( text, menuText, accel, parent, name, toggle ) { init( grp ); }
~WidgetAction();