summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/metadatabase.h
diff options
context:
space:
mode:
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,