From 4d495175043c399fdca6e1bb4c74ef176fc76fb4 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 6 Aug 2025 11:29:57 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 4 Signed-off-by: Michele Calgaro --- doc/html/tqmetaobject.html | 68 +++++++++++++++++++++++----------------------- 1 file changed, 34 insertions(+), 34 deletions(-) (limited to 'doc/html/tqmetaobject.html') diff --git a/doc/html/tqmetaobject.html b/doc/html/tqmetaobject.html index fe0eab0b6..cd51b5f21 100644 --- a/doc/html/tqmetaobject.html +++ b/doc/html/tqmetaobject.html @@ -40,17 +40,17 @@ body { background: #ffffff; color: black; }
  • const char * superClassName () const
  • TQMetaObject * superClass () const
  • bool inherits ( const char * clname ) const
  • -
  • int numSlots ( bool super = FALSE ) const
  • -
  • int numSignals ( bool super = FALSE ) const
  • -
  • TQStrList slotNames ( bool super = FALSE ) const
  • -
  • TQStrList signalNames ( 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
  • -
  • const TQMetaProperty * property ( int index, bool super = FALSE ) const
  • -
  • int findProperty ( const char * name, bool super = FALSE ) const
  • -
  • TQStrList propertyNames ( bool super = FALSE ) const
  • -
  • int numProperties ( bool super = FALSE ) const
  • +
  • int numSlots ( bool super = false ) const
  • +
  • int numSignals ( bool super = false ) const
  • +
  • TQStrList slotNames ( bool super = false ) const
  • +
  • TQStrList signalNames ( 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
  • +
  • const TQMetaProperty * property ( int index, bool super = false ) const
  • +
  • int findProperty ( const char * name, bool super = false ) const
  • +
  • TQStrList propertyNames ( bool super = false ) const
  • +
  • int numProperties ( bool super = false ) const

  • Detailed Description

    @@ -81,18 +81,18 @@ returned by classInfo().


    Member Function Documentation

    -

    const TQClassInfo * TQMetaObject::classInfo ( int index, bool super = FALSE ) const +

    const TQClassInfo * TQMetaObject::classInfo ( int index, bool super = false ) const

    Returns the class information with index index or 0 if no such information exists. -

    If super is TRUE, inherited class information is included. +

    If super is true, inherited class information is included. -

    const char * TQMetaObject::classInfo ( const char * name, bool super = FALSE ) const +

    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.

    Returns the class information with name name or 0 if no such information exists. -

    If super is TRUE, inherited class information is included. +

    If super is true, inherited class information is included.

    const char * TQMetaObject::className () const

    @@ -100,64 +100,64 @@ information exists.

    Returns the class name.

    See also TQObject::className() and superClassName(). -

    int TQMetaObject::findProperty ( const char * name, bool super = FALSE ) const +

    int TQMetaObject::findProperty ( const char * name, bool super = false ) const

    Returns the index for the property with name name or -1 if no such property exists. -

    If super is TRUE, inherited properties are included. +

    If super is true, inherited properties are included.

    See also property() and propertyNames().

    bool TQMetaObject::inherits ( const char * clname ) const

    -Returns TRUE if this class inherits clname within the meta object inheritance chain; otherwise returns FALSE. +Returns true if this class inherits clname within the meta object inheritance chain; otherwise returns false.

    (A class is considered to inherit itself.) -

    int TQMetaObject::numClassInfo ( bool super = FALSE ) const +

    int TQMetaObject::numClassInfo ( bool super = false ) const

    Returns the number of items of class information available for this class. -

    If super is TRUE, inherited class information is included. +

    If super is true, inherited class information is included. -

    int TQMetaObject::numProperties ( bool super = FALSE ) const +

    int TQMetaObject::numProperties ( bool super = false ) const

    Returns the number of properties for this class. -

    If super is TRUE, inherited properties are included. +

    If super is true, inherited properties are included.

    See also propertyNames(). -

    int TQMetaObject::numSignals ( bool super = FALSE ) const +

    int TQMetaObject::numSignals ( bool super = false ) const

    Returns the number of signals for this class. -

    If super is TRUE, inherited signals are included. +

    If super is true, inherited signals are included.

    See also signalNames(). -

    int TQMetaObject::numSlots ( bool super = FALSE ) const +

    int TQMetaObject::numSlots ( bool super = false ) const

    Returns the number of slots for this class. -

    If super is TRUE, inherited slots are included. +

    If super is true, inherited slots are included.

    See also slotNames(). -

    const TQMetaProperty * TQMetaObject::property ( int index, bool super = FALSE ) const +

    const TQMetaProperty * TQMetaObject::property ( int index, bool super = false ) const

    Returns the property meta data for the property at index index or 0 if no such property exists. -

    If super is TRUE, inherited properties are included. +

    If super is true, inherited properties are included.

    See also propertyNames(). -

    TQStrList TQMetaObject::propertyNames ( bool super = FALSE ) const +

    TQStrList TQMetaObject::propertyNames ( bool super = false ) const

    Returns a list with the names of all this class's properties. -

    If super is TRUE, inherited properties are included. +

    If super is true, inherited properties are included.

    See also property(). -

    TQStrList TQMetaObject::signalNames ( bool super = FALSE ) const +

    TQStrList TQMetaObject::signalNames ( bool super = false ) const

    Returns a list with the names of all this class's signals. -

    If super is TRUE, inherited signals are included. +

    If super is true, inherited signals are included. -

    TQStrList TQMetaObject::slotNames ( bool super = FALSE ) const +

    TQStrList TQMetaObject::slotNames ( bool super = false ) const

    Returns a list with the names of all this class's slots. -

    If super is TRUE, inherited slots are included. +

    If super is true, inherited slots are included.

    See also numSlots().

    TQMetaObject * TQMetaObject::superClass () const -- cgit v1.2.3