diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
commit | dcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch) | |
tree | d57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/tqmetaobject-h.html | |
parent | 649c4c61a1f1f479f4532b196f68df476cef2680 (diff) | |
download | tqt-rename/true-false-4.tar.gz tqt-rename/true-false-4.zip |
Replace TRUE/FALSE with boolean values true/false - part 4rename/true-false-4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqmetaobject-h.html')
-rw-r--r-- | doc/html/tqmetaobject-h.html | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/doc/html/tqmetaobject-h.html b/doc/html/tqmetaobject-h.html index 50054b44d..ae2cee5a5 100644 --- a/doc/html/tqmetaobject-h.html +++ b/doc/html/tqmetaobject-h.html @@ -206,34 +206,34 @@ public: bool inherits( const char* clname ) const; - int numSlots( bool super = FALSE ) const; - int numSignals( bool super = FALSE ) const; + int numSlots( bool super = false ) const; + int numSignals( bool super = false ) const; - int findSlot( const char *, bool super = FALSE ) const; - int findSignal( const char *, bool super = FALSE ) const; + int findSlot( const char *, bool super = false ) const; + int findSignal( const char *, bool super = false ) const; - const TQMetaData *slot( int index, bool super = FALSE ) const; - const TQMetaData *signal( int index, bool super = FALSE ) const; + const TQMetaData *slot( int index, bool super = false ) const; + const TQMetaData *signal( int index, bool super = false ) const; - TQStrList slotNames( bool super = FALSE ) const; - TQStrList signalNames( bool super = FALSE ) const; + TQStrList slotNames( bool super = false ) const; + TQStrList signalNames( bool super = false ) const; int slotOffset() const; int signalOffset() const; int propertyOffset() const; - int numClassInfo( bool super = FALSE ) const; - const TQClassInfo *classInfo( int index, bool super = FALSE ) const; - const char *classInfo( const char* name, bool super = FALSE ) const; + int numClassInfo( bool super = false ) const; + const TQClassInfo *classInfo( int index, bool super = false ) const; + const char *classInfo( const char* name, bool super = false ) const; #ifndef TQT_NO_PROPERTIES - const TQMetaProperty *property( int index, bool super = FALSE ) const; - int findProperty( const char *name, bool super = FALSE ) const; - int indexOfProperty( const TQMetaProperty*, bool super = FALSE ) const; + const TQMetaProperty *property( int index, bool super = false ) const; + int findProperty( const char *name, bool super = false ) const; + int indexOfProperty( const TQMetaProperty*, bool super = false ) const; const TQMetaProperty* resolveProperty( const TQMetaProperty* ) const; int resolveProperty( int ) const; - TQStrList propertyNames( bool super = FALSE ) const; - int numProperties( bool super = FALSE ) const; + TQStrList propertyNames( bool super = false ) const; + int numProperties( bool super = false ) const; #endif // static wrappers around constructors, necessary to work around a @@ -255,9 +255,9 @@ public: const TQMetaEnum *const enum_data, int n_enums, bool (*tqt_static_property)(TQObject*, int, int, TQVariant*), const TQClassInfo *const class_info, int n_info ); - TQStrList enumeratorNames( bool super = FALSE ) const; - int numEnumerators( bool super = FALSE ) const; - const TQMetaEnum *enumerator( const char* name, bool super = FALSE ) const; + TQStrList enumeratorNames( bool super = false ) const; + int numEnumerators( bool super = false ) const; + const TQMetaEnum *enumerator( const char* name, bool super = false ) const; #endif static TQMetaObject *metaObject( const char *class_name ); |