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/metadatabase.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/metadatabase.h')
-rw-r--r-- | kommander/editor/metadatabase.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kommander/editor/metadatabase.h b/kommander/editor/metadatabase.h index cb73130e..b2d8fd49 100644 --- a/kommander/editor/metadatabase.h +++ b/kommander/editor/metadatabase.h @@ -126,7 +126,7 @@ public: TQString name; TQStringList args; #if defined(TQ_FULL_TEMPLATE_INSTANTIATION) - bool operator==( const EventDescription& ) const { return FALSE; } + bool operator==( const EventDescription& ) const { return false; } #endif }; @@ -164,7 +164,7 @@ public: static void removeSlot( TQObject *o, const TQString &slot ); static TQValueList<Slot> slotList( TQObject *o ); static bool isSlotUsed( TQObject *o, const TQCString &slot ); - static bool hasSlot( TQObject *o, const TQCString &slot, bool onlyCustom = FALSE ); + static bool hasSlot( TQObject *o, const TQCString &slot, bool onlyCustom = false ); static void changeSlot( TQObject *o, const TQCString &slot, const TQCString &newName ); static void changeSlotAttributes( TQObject *o, const TQCString &slot, const TQString& specifier, const TQString &access, |