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/tqdomdocument.html | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'doc/html/tqdomdocument.html') diff --git a/doc/html/tqdomdocument.html b/doc/html/tqdomdocument.html index 694cdff9b..4913fd1e4 100644 --- a/doc/html/tqdomdocument.html +++ b/doc/html/tqdomdocument.html @@ -323,7 +323,7 @@ function creates a copy that can be used within this document. document. The returned node has no parent. It is not possible to import TQDomDocument and TQDomDocumentType nodes. In those cases this function returns a null node. -

If deep is TRUE, this function imports not only the node importedNode but its whole subtree; if it is FALSE, only the importedNode is imported. The argument deep has no effect on +

If deep is true, this function imports not only the node importedNode but its whole subtree; if it is false, only the importedNode is imported. The argument deep has no effect on TQDomAttr and TQDomEntityReference nodes, since the descendents of TQDomAttr nodes are always imported and those of TQDomEntityReference nodes are never imported. @@ -333,20 +333,20 @@ the node types: Node Type Behaviour TQDomAttr The owner element is set to 0 and the specified flag is -set to TRUE in the generated attribute. The whole subtree +set to true in the generated attribute. The whole subtree of importedNode is always imported for attribute nodes: deep has no effect. TQDomDocument Document nodes cannot be imported. TQDomDocumentFragment -If deep is TRUE, this function imports the whole +If deep is true, this function imports the whole document fragment; otherwise it only generates an empty document fragment. TQDomDocumentType Document type nodes cannot be imported. TQDomElement -Attributes for which TQDomAttr::specified() is TRUE are -also imported, other attributes are not imported. If deep is TRUE, this function also imports the subtree of importedNode; otherwise it imports only the element node +Attributes for which TQDomAttr::specified() is true are +also imported, other attributes are not imported. If deep is true, this function also imports the subtree of importedNode; otherwise it imports only the element node (and some attributes, see above). TQDomEntity Entity nodes can be imported, but at the moment there is @@ -373,7 +373,7 @@ copied to the new node.

bool TQDomDocument::isDocument () const [virtual]

-Returns TRUE. +Returns true.

Reimplemented from TQDomNode.

TQDomNode::NodeType TQDomDocument::nodeType () const [virtual] @@ -393,19 +393,19 @@ will also change the other. If you want to make a TQDomNode::prefix() +

If namespaceProcessing is true, the function TQDomNode::prefix() returns a string for all elements and attributes. It returns an empty string if the element or attribute has no prefix. -

If namespaceProcessing is FALSE, the functions +

If namespaceProcessing is false, the functions TQDomNode::prefix(), TQDomNode::localName() and TQDomNode::namespaceURI() return TQString::null.

See also TQDomNode::namespaceURI(), TQDomNode::localName(), TQDomNode::prefix(), TQString::isNull(), and TQString::isEmpty(). -- cgit v1.2.3