diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-08 13:46:27 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-10 11:39:53 +0900 |
commit | 6d9f250db7d9fa11a554d1045703da36fde41973 (patch) | |
tree | b79af5b615aad4eb0333d5f4e020d17170447ce1 /kommander/editor/widgetfactory.h | |
parent | 6f9718f5603d163770d6a73f6e341d84aa1f1234 (diff) | |
download | tdewebdev-r14.1.4.tar.gz tdewebdev-r14.1.4.zip |
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 4b6836187ba1d0ee85b6be44284639b5bccc8b88)
Diffstat (limited to 'kommander/editor/widgetfactory.h')
-rw-r--r-- | kommander/editor/widgetfactory.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kommander/editor/widgetfactory.h b/kommander/editor/widgetfactory.h index 0135878f..f5d42713 100644 --- a/kommander/editor/widgetfactory.h +++ b/kommander/editor/widgetfactory.h @@ -70,7 +70,7 @@ public: NoLayout }; - static TQWidget *create( int id, TQWidget *parent, const char *name = 0, bool init = TRUE, + static TQWidget *create( int id, TQWidget *parent, const char *name = 0, bool init = true, const TQRect *rect = 0, Orientation orient = TQt::Horizontal ); static TQLayout *createLayout( TQWidget *widget, TQLayout* layout, LayoutType type ); static void deleteLayout( TQWidget *widget ); @@ -360,7 +360,7 @@ class QDesignerDialog : public TQDialog public: QDesignerDialog( FormWindow *fw, TQWidget *parent, const char *name ) - : TQDialog( parent, name, FALSE, WResizeNoErase ), formwindow( fw ) {} + : TQDialog( parent, name, false, WResizeNoErase ), formwindow( fw ) {} protected: void paintEvent( TQPaintEvent *e ); @@ -476,7 +476,7 @@ class EditorDialog : public Dialog public: EditorDialog( FormWindow *fw, TQWidget *parent, const char *name ) - : Dialog( parent, name, FALSE, WResizeNoErase ), formwindow( fw ) { } + : Dialog( parent, name, false, WResizeNoErase ), formwindow( fw ) { } protected: void paintEvent( TQPaintEvent *e ); |