summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/metadatabase.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-08 12:59:07 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-10 17:35:38 +0900
commitd2d30bfbef26707f9158cbc31d5763a9a1d4ab2d (patch)
tree6d2d4502d6fbe4d6810bfb7bcf297cbf995d3db8 /kdevdesigner/designer/metadatabase.h
parentb9618de13e8f38c3558e9ed393a75c1f13af665c (diff)
downloadtdevelop-r14.1.4.tar.gz
tdevelop-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 5198c9d3ac02aa9c7949f49e3cf374f683facb18)
Diffstat (limited to 'kdevdesigner/designer/metadatabase.h')
-rw-r--r--kdevdesigner/designer/metadatabase.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kdevdesigner/designer/metadatabase.h b/kdevdesigner/designer/metadatabase.h
index e9535945..c76475c5 100644
--- a/kdevdesigner/designer/metadatabase.h
+++ b/kdevdesigner/designer/metadatabase.h
@@ -135,7 +135,7 @@ public:
struct MetaInfo
{
- MetaInfo() : classNameChanged( FALSE ) { }
+ MetaInfo() : classNameChanged( false ) { }
TQString className;
bool classNameChanged;
TQString comment;
@@ -166,7 +166,7 @@ public:
static TQString resizeMode( TQObject *o );
static void addConnection( TQObject *o, TQObject *sender, const TQCString &signal,
- TQObject *receiver, const TQCString &slot, bool addCode = TRUE );
+ TQObject *receiver, const TQCString &slot, bool addCode = true );
static void removeConnection( TQObject *o, TQObject *sender, const TQCString &signal,
TQObject *receiver, const TQCString &slot );
static bool hasConnection( TQObject *o, TQObject *sender, const TQCString &signal,
@@ -184,11 +184,11 @@ public:
const TQString &access, const TQString &type, const TQString &language,
const TQString &returnType );
static void removeFunction( TQObject *o, const TQString &function );
- static TQValueList<Function> functionList( TQObject *o, bool onlyFunctions = FALSE );
+ static TQValueList<Function> functionList( TQObject *o, bool onlyFunctions = false );
static TQValueList<Function> slotList( TQObject *o );
static bool isSlotUsed( TQObject *o, const TQCString &slot );
- static bool hasFunction( TQObject *o, const TQCString &function, bool onlyCustom = FALSE );
- static bool hasSlot( TQObject *o, const TQCString &slot, bool onlyCustom = FALSE );
+ static bool hasFunction( TQObject *o, const TQCString &function, bool onlyCustom = false );
+ static bool hasSlot( TQObject *o, const TQCString &slot, bool onlyCustom = false );
static void changeFunction( TQObject *o, const TQString &function, const TQString &newName,
const TQString &returnType );
static void changeFunctionAttributes( TQObject *o, const TQString &oldName, const TQString &newName,