diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-26 11:44:58 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-30 14:26:34 +0900 |
commit | 6dd781c483eea56f51ae0eff47d857976b5d0f0d (patch) | |
tree | 0ddd4408e142ae6f8b13d3538359abd127988b2f /doc/man/man3/tqmetaobject.3qt | |
parent | ff56b6fec14de4cd4b89d5b322531671d200b6e0 (diff) | |
download | tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.tar.gz tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.zip |
Replace TRUE/FALSE with boolean values true/false - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqmetaobject.3qt')
-rw-r--r-- | doc/man/man3/tqmetaobject.3qt | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/doc/man/man3/tqmetaobject.3qt b/doc/man/man3/tqmetaobject.3qt index e56365a3b..7a045ed92 100644 --- a/doc/man/man3/tqmetaobject.3qt +++ b/doc/man/man3/tqmetaobject.3qt @@ -26,37 +26,37 @@ TQMetaObject \- Meta information about TQt objects .BI "bool \fBinherits\fR ( const char * clname ) const" .br .ti -1c -.BI "int \fBnumSlots\fR ( bool super = FALSE ) const" +.BI "int \fBnumSlots\fR ( bool super = false ) const" .br .ti -1c -.BI "int \fBnumSignals\fR ( bool super = FALSE ) const" +.BI "int \fBnumSignals\fR ( bool super = false ) const" .br .ti -1c -.BI "TQStrList \fBslotNames\fR ( bool super = FALSE ) const" +.BI "TQStrList \fBslotNames\fR ( bool super = false ) const" .br .ti -1c -.BI "TQStrList \fBsignalNames\fR ( bool super = FALSE ) const" +.BI "TQStrList \fBsignalNames\fR ( bool super = false ) const" .br .ti -1c -.BI "int \fBnumClassInfo\fR ( bool super = FALSE ) const" +.BI "int \fBnumClassInfo\fR ( bool super = false ) const" .br .ti -1c -.BI "const QClassInfo * \fBclassInfo\fR ( int index, bool super = FALSE ) const" +.BI "const QClassInfo * \fBclassInfo\fR ( int index, bool super = false ) const" .br .ti -1c -.BI "const char * \fBclassInfo\fR ( const char * name, bool super = FALSE ) const" +.BI "const char * \fBclassInfo\fR ( const char * name, bool super = false ) const" .br .ti -1c -.BI "const TQMetaProperty * \fBproperty\fR ( int index, bool super = FALSE ) const" +.BI "const TQMetaProperty * \fBproperty\fR ( int index, bool super = false ) const" .br .ti -1c -.BI "int \fBfindProperty\fR ( const char * name, bool super = FALSE ) const" +.BI "int \fBfindProperty\fR ( const char * name, bool super = false ) const" .br .ti -1c -.BI "TQStrList \fBpropertyNames\fR ( bool super = FALSE ) const" +.BI "TQStrList \fBpropertyNames\fR ( bool super = false ) const" .br .ti -1c -.BI "int \fBnumProperties\fR ( bool super = FALSE ) const" +.BI "int \fBnumProperties\fR ( bool super = false ) const" .br .in -1c .SH DESCRIPTION @@ -83,72 +83,72 @@ Classes may have a list of name-value pairs of class information. The number of See also tqmoc (Meta Object Compiler) and Object Model. .PP .SH MEMBER FUNCTION DOCUMENTATION -.SH "const QClassInfo * TQMetaObject::classInfo ( int index, bool super = FALSE ) const" +.SH "const QClassInfo * TQMetaObject::classInfo ( int index, bool super = false ) const" Returns the class information with index \fIindex\fR or 0 if no such information exists. .PP -If \fIsuper\fR is TRUE, inherited class information is included. -.SH "const char * TQMetaObject::classInfo ( const char * name, bool super = FALSE ) const" +If \fIsuper\fR is true, inherited class information is included. +.SH "const char * TQMetaObject::classInfo ( const char * name, bool super = false ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Returns the class information with name \fIname\fR or 0 if no such information exists. .PP -If \fIsuper\fR is TRUE, inherited class information is included. +If \fIsuper\fR is true, inherited class information is included. .SH "const char * TQMetaObject::className () const" Returns the class name. .PP See also TQObject::className() and superClassName(). -.SH "int TQMetaObject::findProperty ( const char * name, bool super = FALSE ) const" +.SH "int TQMetaObject::findProperty ( const char * name, bool super = false ) const" Returns the index for the property with name \fIname\fR or -1 if no such property exists. .PP -If \fIsuper\fR is TRUE, inherited properties are included. +If \fIsuper\fR is true, inherited properties are included. .PP See also property() and propertyNames(). .SH "bool TQMetaObject::inherits ( const char * clname ) const" -Returns TRUE if this class inherits \fIclname\fR within the meta object inheritance chain; otherwise returns FALSE. +Returns true if this class inherits \fIclname\fR within the meta object inheritance chain; otherwise returns false. .PP (A class is considered to inherit itself.) -.SH "int TQMetaObject::numClassInfo ( bool super = FALSE ) const" +.SH "int TQMetaObject::numClassInfo ( bool super = false ) const" Returns the number of items of class information available for this class. .PP -If \fIsuper\fR is TRUE, inherited class information is included. -.SH "int TQMetaObject::numProperties ( bool super = FALSE ) const" +If \fIsuper\fR is true, inherited class information is included. +.SH "int TQMetaObject::numProperties ( bool super = false ) const" Returns the number of properties for this class. .PP -If \fIsuper\fR is TRUE, inherited properties are included. +If \fIsuper\fR is true, inherited properties are included. .PP See also propertyNames(). -.SH "int TQMetaObject::numSignals ( bool super = FALSE ) const" +.SH "int TQMetaObject::numSignals ( bool super = false ) const" Returns the number of signals for this class. .PP -If \fIsuper\fR is TRUE, inherited signals are included. +If \fIsuper\fR is true, inherited signals are included. .PP See also signalNames(). -.SH "int TQMetaObject::numSlots ( bool super = FALSE ) const" +.SH "int TQMetaObject::numSlots ( bool super = false ) const" Returns the number of slots for this class. .PP -If \fIsuper\fR is TRUE, inherited slots are included. +If \fIsuper\fR is true, inherited slots are included. .PP See also slotNames(). -.SH "const TQMetaProperty * TQMetaObject::property ( int index, bool super = FALSE ) const" +.SH "const TQMetaProperty * TQMetaObject::property ( int index, bool super = false ) const" Returns the property meta data for the property at index \fIindex\fR or 0 if no such property exists. .PP -If \fIsuper\fR is TRUE, inherited properties are included. +If \fIsuper\fR is true, inherited properties are included. .PP See also propertyNames(). -.SH "TQStrList TQMetaObject::propertyNames ( bool super = FALSE ) const" +.SH "TQStrList TQMetaObject::propertyNames ( bool super = false ) const" Returns a list with the names of all this class's properties. .PP -If \fIsuper\fR is TRUE, inherited properties are included. +If \fIsuper\fR is true, inherited properties are included. .PP See also property(). -.SH "TQStrList TQMetaObject::signalNames ( bool super = FALSE ) const" +.SH "TQStrList TQMetaObject::signalNames ( bool super = false ) const" Returns a list with the names of all this class's signals. .PP -If \fIsuper\fR is TRUE, inherited signals are included. -.SH "TQStrList TQMetaObject::slotNames ( bool super = FALSE ) const" +If \fIsuper\fR is true, inherited signals are included. +.SH "TQStrList TQMetaObject::slotNames ( bool super = false ) const" Returns a list with the names of all this class's slots. .PP -If \fIsuper\fR is TRUE, inherited slots are included. +If \fIsuper\fR is true, inherited slots are included. .PP See also numSlots(). .SH "TQMetaObject * TQMetaObject::superClass () const" |