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/tqdomnode.html | 96 ++++++++++++++++++++++++------------------------- 1 file changed, 48 insertions(+), 48 deletions(-) (limited to 'doc/html/tqdomnode.html') diff --git a/doc/html/tqdomnode.html b/doc/html/tqdomnode.html index 83e7c8449..88bfa62df 100644 --- a/doc/html/tqdomnode.html +++ b/doc/html/tqdomnode.html @@ -51,7 +51,7 @@ body { background: #ffffff; color: black; }
  • virtual TQDomNode removeChild ( const TQDomNode & oldChild )
  • virtual TQDomNode appendChild ( const TQDomNode & newChild )
  • virtual bool hasChildNodes () const
  • -
  • virtual TQDomNode cloneNode ( bool deep = TRUE ) const
  • +
  • virtual TQDomNode cloneNode ( bool deep = true ) const
  • virtual void normalize ()
  • virtual bool isSupported ( const TQString & feature, const TQString & version ) const
  • virtual TQString nodeName () const
  • @@ -256,12 +256,12 @@ Converts the node into a null node; if it was not a null node before, its type and contents are deleted.

    See also isNull(). -

    TQDomNode TQDomNode::cloneNode ( bool deep = TRUE ) const [virtual] +

    TQDomNode TQDomNode::cloneNode ( bool deep = true ) const [virtual]

    Creates a deep (not shallow) copy of the TQDomNode. -

    If deep is TRUE, then the cloning is done recursively which +

    If deep is true, then the cloning is done recursively which means that all the node's children are deep copied too. If deep -is FALSE only the node itself is copied and the copy will have no +is false only the node itself is copied and the copy will have no child nodes.

    TQDomNode TQDomNode::firstChild () const [virtual] @@ -274,13 +274,13 @@ returned node will also change the node in the document tree.

    Example: xml/outliner/outlinetree.cpp.

    bool TQDomNode::hasAttributes () const [virtual]

    -Returns TRUE if the node has attributes; otherwise returns FALSE. +Returns true if the node has attributes; otherwise returns false.

    See also attributes().

    bool TQDomNode::hasChildNodes () const [virtual]

    -Returns TRUE if the node has one or more children; otherwise -returns FALSE. +Returns true if the node has one or more children; otherwise +returns false.

    TQDomNode TQDomNode::insertAfter ( const TQDomNode & newChild, const TQDomNode & refChild ) [virtual]

    @@ -311,8 +311,8 @@ fragment are removed from the fragment and inserted before refChild.

    bool TQDomNode::isAttr () const [virtual]

    -Returns TRUE if the node is an attribute; otherwise returns FALSE. -

    If this function returns TRUE, it does not imply that this object +Returns true if the node is an attribute; otherwise returns false. +

    If this function returns true, it does not imply that this object is a TQDomAttribute; you can get the TQDomAttribute with toAttribute().

    See also toAttr(). @@ -320,9 +320,9 @@ toAttribute().

    Reimplemented in TQDomAttr.

    bool TQDomNode::isCDATASection () const [virtual]

    -Returns TRUE if the node is a CDATA section; otherwise returns -FALSE. -

    If this function returns TRUE, it does not imply that this object +Returns true if the node is a CDATA section; otherwise returns +false. +

    If this function returns true, it does not imply that this object is a TQDomCDATASection; you can get the TQDomCDATASection with toCDATASection().

    See also toCDATASection(). @@ -330,9 +330,9 @@ is a TQDomCDATASection; you can get the TQD

    Reimplemented in TQDomCDATASection.

    bool TQDomNode::isCharacterData () const [virtual]

    -Returns TRUE if the node is a character data node; otherwise -returns FALSE. -

    If this function returns TRUE, it does not imply that this object +Returns true if the node is a character data node; otherwise +returns false. +

    If this function returns true, it does not imply that this object is a TQDomCharacterData; you can get the TQDomCharacterData with toCharacterData().

    See also toCharacterData(). @@ -340,25 +340,25 @@ is a TQDomCharacterData; you can get the T

    Reimplemented in TQDomCharacterData.

    bool TQDomNode::isComment () const [virtual]

    -Returns TRUE if the node is a comment; otherwise returns FALSE. -

    If this function returns TRUE, it does not imply that this object +Returns true if the node is a comment; otherwise returns false. +

    If this function returns true, it does not imply that this object is a TQDomComment; you can get the TQDomComment with toComment().

    See also toComment().

    Reimplemented in TQDomComment.

    bool TQDomNode::isDocument () const [virtual]

    -Returns TRUE if the node is a document; otherwise returns FALSE. -

    If this function returns TRUE, it does not imply that this object +Returns true if the node is a document; otherwise returns false. +

    If this function returns true, it does not imply that this object is a TQDomDocument; you can get the TQDomDocument with toDocument().

    See also toDocument().

    Reimplemented in TQDomDocument.

    bool TQDomNode::isDocumentFragment () const [virtual]

    -Returns TRUE if the node is a document fragment; otherwise returns -FALSE. -

    If this function returns TRUE, it does not imply that this object +Returns true if the node is a document fragment; otherwise returns +false. +

    If this function returns true, it does not imply that this object is a TQDomDocumentFragment; you can get the TQDomDocumentFragment with toDocumentFragment().

    See also toDocumentFragment(). @@ -366,9 +366,9 @@ with toDocumentFragment().

    Reimplemented in TQDomDocumentFragment.

    bool TQDomNode::isDocumentType () const [virtual]

    -Returns TRUE if the node is a document type; otherwise returns -FALSE. -

    If this function returns TRUE, it does not imply that this object +Returns true if the node is a document type; otherwise returns +false. +

    If this function returns true, it does not imply that this object is a TQDomDocumentType; you can get the TQDomDocumentType with toDocumentType().

    See also toDocumentType(). @@ -376,8 +376,8 @@ is a TQDomDocumentType; you can get the TQD

    Reimplemented in TQDomDocumentType.

    bool TQDomNode::isElement () const [virtual]

    -Returns TRUE if the node is an element; otherwise returns FALSE. -

    If this function returns TRUE, it does not imply that this object +Returns true if the node is an element; otherwise returns false. +

    If this function returns true, it does not imply that this object is a TQDomElement; you can get the TQDomElement with toElement().

    See also toElement(). @@ -385,17 +385,17 @@ is a TQDomElement; you can get the TQDomElement

    Reimplemented in TQDomElement.

    bool TQDomNode::isEntity () const [virtual]

    -Returns TRUE if the node is an entity; otherwise returns FALSE. -

    If this function returns TRUE, it does not imply that this object +Returns true if the node is an entity; otherwise returns false. +

    If this function returns true, it does not imply that this object is a TQDomEntity; you can get the TQDomEntity with toEntity().

    See also toEntity().

    Reimplemented in TQDomEntity.

    bool TQDomNode::isEntityReference () const [virtual]

    -Returns TRUE if the node is an entity reference; otherwise returns -FALSE. -

    If this function returns TRUE, it does not imply that this object +Returns true if the node is an entity reference; otherwise returns +false. +

    If this function returns true, it does not imply that this object is a TQDomEntityReference; you can get the TQDomEntityReference with toEntityReference().

    See also toEntityReference(). @@ -403,23 +403,23 @@ is a TQDomEntityReference; you can get t

    Reimplemented in TQDomEntityReference.

    bool TQDomNode::isNotation () const [virtual]

    -Returns TRUE if the node is a notation; otherwise returns FALSE. -

    If this function returns TRUE, it does not imply that this object +Returns true if the node is a notation; otherwise returns false. +

    If this function returns true, it does not imply that this object is a TQDomNotation; you can get the TQDomNotation with toNotation().

    See also toNotation().

    Reimplemented in TQDomNotation.

    bool TQDomNode::isNull () const

    -Returns TRUE if this node is null (i.e. if it has no type or -contents); otherwise returns FALSE. +Returns true if this node is null (i.e. if it has no type or +contents); otherwise returns false.

    Example: xml/outliner/outlinetree.cpp.

    bool TQDomNode::isProcessingInstruction () const [virtual]

    -Returns TRUE if the node is a processing instruction; otherwise -returns FALSE. -

    If this function returns TRUE, it does not imply that this object +Returns true if the node is a processing instruction; otherwise +returns false. +

    If this function returns true, it does not imply that this object is a TQDomProcessingInstruction; you can get the TQProcessingInstruction with toProcessingInstruction().

    See also toProcessingInstruction(). @@ -427,14 +427,14 @@ TQProcessingInstruction with toProcessingInst

    Reimplemented in TQDomProcessingInstruction.

    bool TQDomNode::isSupported ( const TQString & feature, const TQString & version ) const [virtual]

    -Returns TRUE if the DOM implementation implements the feature feature and this feature is supported by this node in the version -version; otherwise returns FALSE. +Returns true if the DOM implementation implements the feature feature and this feature is supported by this node in the version +version; otherwise returns false.

    See also TQDomImplementation::hasFeature().

    bool TQDomNode::isText () const [virtual]

    -Returns TRUE if the node is a text node; otherwise returns FALSE. -

    If this function returns TRUE, it does not imply that this object +Returns true if the node is a text node; otherwise returns false. +

    If this function returns true, it does not imply that this object is a TQDomText; you can get the TQDomText with toText().

    See also toText(). @@ -543,8 +543,8 @@ merged).

    bool TQDomNode::operator!= ( const TQDomNode & n ) const

    -Returns TRUE if n and this DOM node are not equal; otherwise -returns FALSE. +Returns true if n and this DOM node are not equal; otherwise +returns false.

    TQDomNode & TQDomNode::operator= ( const TQDomNode & n )

    @@ -555,8 +555,8 @@ will also change the other. If you want to make a TQDomNode::operator== ( const TQDomNode & n ) const -Returns TRUE if n and this DOM node are equal; otherwise -returns FALSE. +Returns true if n and this DOM node are equal; otherwise +returns false.

    TQDomDocument TQDomNode::ownerDocument () const [virtual]

    @@ -565,7 +565,7 @@ Returns the document to which this node belongs.

    TQDomNode TQDomNode::parentNode () const [virtual]

    Returns the parent node. If this node has no parent, a null node -is returned (i.e. a node for which isNull() returns TRUE). +is returned (i.e. a node for which isNull() returns true).

    TQString TQDomNode::prefix () const [virtual]

    -- cgit v1.2.3