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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdevdesigner/designer/widgetaction.h b/kdevdesigner/designer/widgetaction.h
index 2e0c8e26..b3c81368 100644
--- a/kdevdesigner/designer/widgetaction.h
+++ b/kdevdesigner/designer/widgetaction.h
@@ -36,15 +36,15 @@ class WidgetAction : public TQAction
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();