summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdomnode.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqdomnode.3qt')
-rw-r--r--doc/man/man3/tqdomnode.3qt72
1 files changed, 36 insertions, 36 deletions
diff --git a/doc/man/man3/tqdomnode.3qt b/doc/man/man3/tqdomnode.3qt
index cf59170eb..89c245d91 100644
--- a/doc/man/man3/tqdomnode.3qt
+++ b/doc/man/man3/tqdomnode.3qt
@@ -57,7 +57,7 @@ Inherited by TQDomDocumentType, TQDomDocument, TQDomDocumentFragment, TQDomChara
.BI "virtual bool \fBhasChildNodes\fR () const"
.br
.ti -1c
-.BI "virtual TQDomNode \fBcloneNode\fR ( bool deep = TRUE ) const"
+.BI "virtual TQDomNode \fBcloneNode\fR ( bool deep = true ) const"
.br
.ti -1c
.BI "virtual void \fBnormalize\fR ()"
@@ -356,10 +356,10 @@ See also firstChild() and lastChild().
Converts the node into a null node; if it was not a null node before, its type and contents are deleted.
.PP
See also isNull().
-.SH "TQDomNode TQDomNode::cloneNode ( bool deep = TRUE ) const\fC [virtual]\fR"
+.SH "TQDomNode TQDomNode::cloneNode ( bool deep = true ) const\fC [virtual]\fR"
Creates a deep (not shallow) copy of the TQDomNode.
.PP
-If \fIdeep\fR is TRUE, then the cloning is done recursively which means that all the node's children are deep copied too. If \fIdeep\fR is FALSE only the node itself is copied and the copy will have no child nodes.
+If \fIdeep\fR is true, then the cloning is done recursively which means that all the node's children are deep copied too. If \fIdeep\fR is false only the node itself is copied and the copy will have no child nodes.
.SH "TQDomNode TQDomNode::firstChild () const\fC [virtual]\fR"
Returns the first child of the node. If there is no child node, a null node is returned. Changing the returned node will also change the node in the document tree.
.PP
@@ -367,11 +367,11 @@ See also lastChild() and childNodes().
.PP
Example: xml/outliner/outlinetree.cpp.
.SH "bool TQDomNode::hasAttributes () const\fC [virtual]\fR"
-Returns TRUE if the node has attributes; otherwise returns FALSE.
+Returns true if the node has attributes; otherwise returns false.
.PP
See also attributes().
.SH "bool TQDomNode::hasChildNodes () const\fC [virtual]\fR"
-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.
.SH "TQDomNode TQDomNode::insertAfter ( const TQDomNode & newChild, const TQDomNode & refChild )\fC [virtual]\fR"
Inserts the node \fInewChild\fR after the child node \fIrefChild\fR. \fIrefChild\fR must be a direct child of this node. If \fIrefChild\fR is null then \fInewChild\fR is appended as this node's last child.
.PP
@@ -393,65 +393,65 @@ Returns a new reference to \fInewChild\fR on success or a null node on failure.
.PP
See also insertAfter(), replaceChild(), removeChild(), and appendChild().
.SH "bool TQDomNode::isAttr () const\fC [virtual]\fR"
-Returns TRUE if the node is an attribute; otherwise returns FALSE.
+Returns true if the node is an attribute; otherwise returns false.
.PP
-If this function returns TRUE, it does not imply that this object is a TQDomAttribute; you can get the TQDomAttribute with toAttribute().
+If this function returns true, it does not imply that this object is a TQDomAttribute; you can get the TQDomAttribute with toAttribute().
.PP
See also toAttr().
.PP
Reimplemented in TQDomAttr.
.SH "bool TQDomNode::isCDATASection () const\fC [virtual]\fR"
-Returns TRUE if the node is a CDATA section; otherwise returns FALSE.
+Returns true if the node is a CDATA section; otherwise returns false.
.PP
-If this function returns TRUE, it does not imply that this object is a TQDomCDATASection; you can get the TQDomCDATASection with toCDATASection().
+If this function returns true, it does not imply that this object is a TQDomCDATASection; you can get the TQDomCDATASection with toCDATASection().
.PP
See also toCDATASection().
.PP
Reimplemented in TQDomCDATASection.
.SH "bool TQDomNode::isCharacterData () const\fC [virtual]\fR"
-Returns TRUE if the node is a character data node; otherwise returns FALSE.
+Returns true if the node is a character data node; otherwise returns false.
.PP
-If this function returns TRUE, it does not imply that this object is a TQDomCharacterData; you can get the TQDomCharacterData with toCharacterData().
+If this function returns true, it does not imply that this object is a TQDomCharacterData; you can get the TQDomCharacterData with toCharacterData().
.PP
See also toCharacterData().
.PP
Reimplemented in TQDomCharacterData.
.SH "bool TQDomNode::isComment () const\fC [virtual]\fR"
-Returns TRUE if the node is a comment; otherwise returns FALSE.
+Returns true if the node is a comment; otherwise returns false.
.PP
-If this function returns TRUE, it does not imply that this object is a TQDomComment; you can get the TQDomComment with toComment().
+If this function returns true, it does not imply that this object is a TQDomComment; you can get the TQDomComment with toComment().
.PP
See also toComment().
.PP
Reimplemented in TQDomComment.
.SH "bool TQDomNode::isDocument () const\fC [virtual]\fR"
-Returns TRUE if the node is a document; otherwise returns FALSE.
+Returns true if the node is a document; otherwise returns false.
.PP
-If this function returns TRUE, it does not imply that this object is a TQDomDocument; you can get the TQDomDocument with toDocument().
+If this function returns true, it does not imply that this object is a TQDomDocument; you can get the TQDomDocument with toDocument().
.PP
See also toDocument().
.PP
Reimplemented in TQDomDocument.
.SH "bool TQDomNode::isDocumentFragment () const\fC [virtual]\fR"
-Returns TRUE if the node is a document fragment; otherwise returns FALSE.
+Returns true if the node is a document fragment; otherwise returns false.
.PP
-If this function returns TRUE, it does not imply that this object is a TQDomDocumentFragment; you can get the TQDomDocumentFragment with toDocumentFragment().
+If this function returns true, it does not imply that this object is a TQDomDocumentFragment; you can get the TQDomDocumentFragment with toDocumentFragment().
.PP
See also toDocumentFragment().
.PP
Reimplemented in TQDomDocumentFragment.
.SH "bool TQDomNode::isDocumentType () const\fC [virtual]\fR"
-Returns TRUE if the node is a document type; otherwise returns FALSE.
+Returns true if the node is a document type; otherwise returns false.
.PP
-If this function returns TRUE, it does not imply that this object is a TQDomDocumentType; you can get the TQDomDocumentType with toDocumentType().
+If this function returns true, it does not imply that this object is a TQDomDocumentType; you can get the TQDomDocumentType with toDocumentType().
.PP
See also toDocumentType().
.PP
Reimplemented in TQDomDocumentType.
.SH "bool TQDomNode::isElement () const\fC [virtual]\fR"
-Returns TRUE if the node is an element; otherwise returns FALSE.
+Returns true if the node is an element; otherwise returns false.
.PP
-If this function returns TRUE, it does not imply that this object is a TQDomElement; you can get the TQDomElement with toElement().
+If this function returns true, it does not imply that this object is a TQDomElement; you can get the TQDomElement with toElement().
.PP
See also toElement().
.PP
@@ -459,49 +459,49 @@ Example: xml/outliner/outlinetree.cpp.
.PP
Reimplemented in TQDomElement.
.SH "bool TQDomNode::isEntity () const\fC [virtual]\fR"
-Returns TRUE if the node is an entity; otherwise returns FALSE.
+Returns true if the node is an entity; otherwise returns false.
.PP
-If this function returns TRUE, it does not imply that this object is a TQDomEntity; you can get the TQDomEntity with toEntity().
+If this function returns true, it does not imply that this object is a TQDomEntity; you can get the TQDomEntity with toEntity().
.PP
See also toEntity().
.PP
Reimplemented in TQDomEntity.
.SH "bool TQDomNode::isEntityReference () const\fC [virtual]\fR"
-Returns TRUE if the node is an entity reference; otherwise returns FALSE.
+Returns true if the node is an entity reference; otherwise returns false.
.PP
-If this function returns TRUE, it does not imply that this object is a TQDomEntityReference; you can get the TQDomEntityReference with toEntityReference().
+If this function returns true, it does not imply that this object is a TQDomEntityReference; you can get the TQDomEntityReference with toEntityReference().
.PP
See also toEntityReference().
.PP
Reimplemented in TQDomEntityReference.
.SH "bool TQDomNode::isNotation () const\fC [virtual]\fR"
-Returns TRUE if the node is a notation; otherwise returns FALSE.
+Returns true if the node is a notation; otherwise returns false.
.PP
-If this function returns TRUE, it does not imply that this object is a TQDomNotation; you can get the TQDomNotation with toNotation().
+If this function returns true, it does not imply that this object is a TQDomNotation; you can get the TQDomNotation with toNotation().
.PP
See also toNotation().
.PP
Reimplemented in TQDomNotation.
.SH "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.
.PP
Example: xml/outliner/outlinetree.cpp.
.SH "bool TQDomNode::isProcessingInstruction () const\fC [virtual]\fR"
-Returns TRUE if the node is a processing instruction; otherwise returns FALSE.
+Returns true if the node is a processing instruction; otherwise returns false.
.PP
-If this function returns TRUE, it does not imply that this object is a TQDomProcessingInstruction; you can get the TQProcessingInstruction with toProcessingInstruction().
+If this function returns true, it does not imply that this object is a TQDomProcessingInstruction; you can get the TQProcessingInstruction with toProcessingInstruction().
.PP
See also toProcessingInstruction().
.PP
Reimplemented in TQDomProcessingInstruction.
.SH "bool TQDomNode::isSupported ( const TQString & feature, const TQString & version ) const\fC [virtual]\fR"
-Returns TRUE if the DOM implementation implements the feature \fIfeature\fR and this feature is supported by this node in the version \fIversion\fR; otherwise returns FALSE.
+Returns true if the DOM implementation implements the feature \fIfeature\fR and this feature is supported by this node in the version \fIversion\fR; otherwise returns false.
.PP
See also TQDomImplementation::hasFeature().
.SH "bool TQDomNode::isText () const\fC [virtual]\fR"
-Returns TRUE if the node is a text node; otherwise returns FALSE.
+Returns true if the node is a text node; otherwise returns false.
.PP
-If this function returns TRUE, it does not imply that this object is a TQDomText; you can get the TQDomText with toText().
+If this function returns true, it does not imply that this object is a TQDomText; you can get the TQDomText with toText().
.PP
See also toText().
.PP
@@ -584,17 +584,17 @@ Example: xml/outliner/outlinetree.cpp.
.SH "void TQDomNode::normalize ()\fC [virtual]\fR"
Calling normalize() on an element converts all its children into a standard form. This means that adjacent TQDomText objects will be merged into a single text object (TQDomCDATASection nodes are not merged).
.SH "bool TQDomNode::operator!= ( const TQDomNode & n ) const"
-Returns TRUE if \fIn\fR and this DOM node are not equal; otherwise returns FALSE.
+Returns true if \fIn\fR and this DOM node are not equal; otherwise returns false.
.SH "TQDomNode & TQDomNode::operator= ( const TQDomNode & n )"
Assigns a copy of \fIn\fR to this DOM node.
.PP
The data of the copy is shared (shallow copy): modifying one node will also change the other. If you want to make a deep copy, use cloneNode().
.SH "bool TQDomNode::operator== ( const TQDomNode & n ) const"
-Returns TRUE if \fIn\fR and this DOM node are equal; otherwise returns FALSE.
+Returns true if \fIn\fR and this DOM node are equal; otherwise returns false.
.SH "TQDomDocument TQDomNode::ownerDocument () const\fC [virtual]\fR"
Returns the document to which this node belongs.
.SH "TQDomNode TQDomNode::parentNode () const\fC [virtual]\fR"
-Returns the parent node. If this node has no parent, a null node is returned (i.e. a node for which isNull() returns TRUE).
+Returns the parent node. If this node has no parent, a null node is returned (i.e. a node for which isNull() returns true).
.SH "TQString TQDomNode::prefix () const\fC [virtual]\fR"
Returns the namespace prefix of the node or TQString::null if the node has no namespace prefix.
.PP