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/command.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/command.h')
-rw-r--r-- | kommander/editor/command.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kommander/editor/command.h b/kommander/editor/command.h index c093b0af..615a0348 100644 --- a/kommander/editor/command.h +++ b/kommander/editor/command.h @@ -128,7 +128,7 @@ class CommandHistory : public TQObject public: CommandHistory( int s ); - void addCommand( Command *cmd, bool tryCompress = FALSE ); + void addCommand( Command *cmd, bool tryCompress = false ); void undo(); void redo(); @@ -229,7 +229,7 @@ public: const TQString &pn, const TQVariant &ov, const TQVariant &nv, const TQString &ncut, const TQString &ocut, - bool reset = FALSE ); + bool reset = false ); void execute(); void unexecute(); @@ -239,7 +239,7 @@ public: bool checkProperty(); private: - void setProperty( const TQVariant &v, const TQString ¤tItemText, bool select = TRUE ); + void setProperty( const TQVariant &v, const TQString ¤tItemText, bool select = true ); TQObject *widget; PropertyEditor *editor; @@ -458,7 +458,7 @@ class AddWizardPageCommand : public Command { public: AddWizardPageCommand( const TQString &n, FormWindow *fw, - TQWizard *w, const TQString &label, int index = -1, bool show = TRUE ); + TQWizard *w, const TQString &label, int index = -1, bool show = true ); void execute(); void unexecute(); @@ -477,7 +477,7 @@ class DeleteWizardPageCommand : public Command { public: DeleteWizardPageCommand( const TQString &n, FormWindow *fw, - TQWizard *w, int index, bool show = TRUE ); + TQWizard *w, int index, bool show = true ); void execute(); void unexecute(); @@ -660,7 +660,7 @@ public: TQString text; TQPixmap pix; #if defined(TQ_FULL_TEMPLATE_INSTANTIATION) - bool operator==( const Item & ) const { return FALSE; } + bool operator==( const Item & ) const { return false; } #endif }; @@ -686,7 +686,7 @@ public: TQString text; TQPixmap pix; #if defined(TQ_FULL_TEMPLATE_INSTANTIATION) - bool operator==( const Item & ) const { return FALSE; } + bool operator==( const Item & ) const { return false; } #endif }; @@ -746,7 +746,7 @@ public: TQString text; TQPixmap pix; #if defined(TQ_FULL_TEMPLATE_INSTANTIATION) - bool operator==( const Row& ) const { return FALSE; } + bool operator==( const Row& ) const { return false; } #endif }; @@ -756,7 +756,7 @@ public: TQPixmap pix; TQString field; #if defined(TQ_FULL_TEMPLATE_INSTANTIATION) - bool operator==( const Column& ) const { return FALSE; } + bool operator==( const Column& ) const { return false; } #endif }; |