summaryrefslogtreecommitdiffstats
path: root/doc/html/qdomnode.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qdomnode.html')
-rw-r--r--doc/html/qdomnode.html96
1 files changed, 48 insertions, 48 deletions
diff --git a/doc/html/qdomnode.html b/doc/html/qdomnode.html
index 176fa04d0..50e91f264 100644
--- a/doc/html/qdomnode.html
+++ b/doc/html/qdomnode.html
@@ -52,7 +52,7 @@ body { background: #ffffff; color: black; }
<li class=fn>virtual TQDomNode <a href="#removeChild"><b>removeChild</b></a> ( const&nbsp;TQDomNode&nbsp;&amp;&nbsp;oldChild )</li>
<li class=fn>virtual TQDomNode <a href="#appendChild"><b>appendChild</b></a> ( const&nbsp;TQDomNode&nbsp;&amp;&nbsp;newChild )</li>
<li class=fn>virtual bool <a href="#hasChildNodes"><b>hasChildNodes</b></a> () const</li>
-<li class=fn>virtual TQDomNode <a href="#cloneNode"><b>cloneNode</b></a> ( bool&nbsp;deep = TRUE ) const</li>
+<li class=fn>virtual TQDomNode <a href="#cloneNode"><b>cloneNode</b></a> ( bool&nbsp;deep = true ) const</li>
<li class=fn>virtual void <a href="#normalize"><b>normalize</b></a> ()</li>
<li class=fn>virtual bool <a href="#isSupported"><b>isSupported</b></a> ( const&nbsp;TQString&nbsp;&amp;&nbsp;feature, const&nbsp;TQString&nbsp;&amp;&nbsp;version ) const</li>
<li class=fn>virtual TQString <a href="#nodeName"><b>nodeName</b></a> () const</li>
@@ -257,12 +257,12 @@ Converts the node into a null node; if it was not a null node
before, its type and contents are deleted.
<p> <p>See also <a href="#isNull">isNull</a>().
-<h3 class=fn><a href="qdomnode.html">TQDomNode</a> <a name="cloneNode"></a>TQDomNode::cloneNode ( bool&nbsp;deep = TRUE ) const<tt> [virtual]</tt>
+<h3 class=fn><a href="qdomnode.html">TQDomNode</a> <a name="cloneNode"></a>TQDomNode::cloneNode ( bool&nbsp;deep = true ) const<tt> [virtual]</tt>
</h3>
Creates a deep (not shallow) copy of the TQDomNode.
-<p> If <em>deep</em> is TRUE, then the cloning is done recursively which
+<p> If <em>deep</em> is true, then the cloning is done recursively which
means that all the node's children are deep copied too. If <em>deep</em>
-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.
<h3 class=fn><a href="qdomnode.html">TQDomNode</a> <a name="firstChild"></a>TQDomNode::firstChild () const<tt> [virtual]</tt>
@@ -275,13 +275,13 @@ returned node will also change the node in the document tree.
<p>Example: <a href="outliner-example.html#x1907">xml/outliner/outlinetree.cpp</a>.
<h3 class=fn>bool <a name="hasAttributes"></a>TQDomNode::hasAttributes () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node has attributes; otherwise returns FALSE.
+Returns true if the node has attributes; otherwise returns false.
<p> <p>See also <a href="#attributes">attributes</a>().
<h3 class=fn>bool <a name="hasChildNodes"></a>TQDomNode::hasChildNodes () const<tt> [virtual]</tt>
</h3>
-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.
<h3 class=fn><a href="qdomnode.html">TQDomNode</a> <a name="insertAfter"></a>TQDomNode::insertAfter ( const&nbsp;<a href="qdomnode.html">TQDomNode</a>&nbsp;&amp;&nbsp;newChild, const&nbsp;<a href="qdomnode.html">TQDomNode</a>&nbsp;&amp;&nbsp;refChild )<tt> [virtual]</tt>
</h3>
@@ -312,8 +312,8 @@ fragment are removed from the fragment and inserted before <em>refChild</em>.
<h3 class=fn>bool <a name="isAttr"></a>TQDomNode::isAttr () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node is an attribute; otherwise returns FALSE.
-<p> If this function returns TRUE, it does not imply that this object
+Returns true if the node is an attribute; otherwise returns false.
+<p> If this function returns true, it does not imply that this object
is a TQDomAttribute; you can get the TQDomAttribute with
toAttribute().
<p> <p>See also <a href="#toAttr">toAttr</a>().
@@ -321,9 +321,9 @@ toAttribute().
<p>Reimplemented in <a href="qdomattr.html#isAttr">TQDomAttr</a>.
<h3 class=fn>bool <a name="isCDATASection"></a>TQDomNode::isCDATASection () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node is a CDATA section; otherwise returns
-FALSE.
-<p> If this function returns TRUE, it does not imply that this object
+Returns true if the node is a CDATA section; otherwise returns
+false.
+<p> If this function returns true, it does not imply that this object
is a <a href="qdomcdatasection.html">TQDomCDATASection</a>; you can get the TQDomCDATASection with
<a href="#toCDATASection">toCDATASection</a>().
<p> <p>See also <a href="#toCDATASection">toCDATASection</a>().
@@ -331,9 +331,9 @@ is a <a href="qdomcdatasection.html">TQDomCDATASection</a>; you can get the TQDo
<p>Reimplemented in <a href="qdomcdatasection.html#isCDATASection">TQDomCDATASection</a>.
<h3 class=fn>bool <a name="isCharacterData"></a>TQDomNode::isCharacterData () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node is a character data node; otherwise
-returns FALSE.
-<p> 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.
+<p> If this function returns true, it does not imply that this object
is a <a href="qdomcharacterdata.html">TQDomCharacterData</a>; you can get the TQDomCharacterData with
<a href="#toCharacterData">toCharacterData</a>().
<p> <p>See also <a href="#toCharacterData">toCharacterData</a>().
@@ -341,25 +341,25 @@ is a <a href="qdomcharacterdata.html">TQDomCharacterData</a>; you can get the TQ
<p>Reimplemented in <a href="qdomcharacterdata.html#isCharacterData">TQDomCharacterData</a>.
<h3 class=fn>bool <a name="isComment"></a>TQDomNode::isComment () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node is a comment; otherwise returns FALSE.
-<p> If this function returns TRUE, it does not imply that this object
+Returns true if the node is a comment; otherwise returns false.
+<p> If this function returns true, it does not imply that this object
is a <a href="qdomcomment.html">TQDomComment</a>; you can get the TQDomComment with <a href="#toComment">toComment</a>().
<p> <p>See also <a href="#toComment">toComment</a>().
<p>Reimplemented in <a href="qdomcomment.html#isComment">TQDomComment</a>.
<h3 class=fn>bool <a name="isDocument"></a>TQDomNode::isDocument () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node is a document; otherwise returns FALSE.
-<p> If this function returns TRUE, it does not imply that this object
+Returns true if the node is a document; otherwise returns false.
+<p> If this function returns true, it does not imply that this object
is a <a href="qdomdocument.html">TQDomDocument</a>; you can get the TQDomDocument with <a href="#toDocument">toDocument</a>().
<p> <p>See also <a href="#toDocument">toDocument</a>().
<p>Reimplemented in <a href="qdomdocument.html#isDocument">TQDomDocument</a>.
<h3 class=fn>bool <a name="isDocumentFragment"></a>TQDomNode::isDocumentFragment () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node is a document fragment; otherwise returns
-FALSE.
-<p> If this function returns TRUE, it does not imply that this object
+Returns true if the node is a document fragment; otherwise returns
+false.
+<p> If this function returns true, it does not imply that this object
is a <a href="qdomdocumentfragment.html">TQDomDocumentFragment</a>; you can get the TQDomDocumentFragment
with <a href="#toDocumentFragment">toDocumentFragment</a>().
<p> <p>See also <a href="#toDocumentFragment">toDocumentFragment</a>().
@@ -367,9 +367,9 @@ with <a href="#toDocumentFragment">toDocumentFragment</a>().
<p>Reimplemented in <a href="qdomdocumentfragment.html#isDocumentFragment">TQDomDocumentFragment</a>.
<h3 class=fn>bool <a name="isDocumentType"></a>TQDomNode::isDocumentType () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node is a document type; otherwise returns
-FALSE.
-<p> If this function returns TRUE, it does not imply that this object
+Returns true if the node is a document type; otherwise returns
+false.
+<p> If this function returns true, it does not imply that this object
is a <a href="qdomdocumenttype.html">TQDomDocumentType</a>; you can get the TQDomDocumentType with
<a href="#toDocumentType">toDocumentType</a>().
<p> <p>See also <a href="#toDocumentType">toDocumentType</a>().
@@ -377,8 +377,8 @@ is a <a href="qdomdocumenttype.html">TQDomDocumentType</a>; you can get the TQDo
<p>Reimplemented in <a href="qdomdocumenttype.html#isDocumentType">TQDomDocumentType</a>.
<h3 class=fn>bool <a name="isElement"></a>TQDomNode::isElement () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node is an element; otherwise returns FALSE.
-<p> If this function returns TRUE, it does not imply that this object
+Returns true if the node is an element; otherwise returns false.
+<p> If this function returns true, it does not imply that this object
is a <a href="qdomelement.html">TQDomElement</a>; you can get the TQDomElement with <a href="#toElement">toElement</a>().
<p> <p>See also <a href="#toElement">toElement</a>().
@@ -386,17 +386,17 @@ is a <a href="qdomelement.html">TQDomElement</a>; you can get the TQDomElement w
<p>Reimplemented in <a href="qdomelement.html#isElement">TQDomElement</a>.
<h3 class=fn>bool <a name="isEntity"></a>TQDomNode::isEntity () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node is an entity; otherwise returns FALSE.
-<p> If this function returns TRUE, it does not imply that this object
+Returns true if the node is an entity; otherwise returns false.
+<p> If this function returns true, it does not imply that this object
is a <a href="qdomentity.html">TQDomEntity</a>; you can get the TQDomEntity with <a href="#toEntity">toEntity</a>().
<p> <p>See also <a href="#toEntity">toEntity</a>().
<p>Reimplemented in <a href="qdomentity.html#isEntity">TQDomEntity</a>.
<h3 class=fn>bool <a name="isEntityReference"></a>TQDomNode::isEntityReference () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node is an entity reference; otherwise returns
-FALSE.
-<p> If this function returns TRUE, it does not imply that this object
+Returns true if the node is an entity reference; otherwise returns
+false.
+<p> If this function returns true, it does not imply that this object
is a <a href="qdomentityreference.html">TQDomEntityReference</a>; you can get the TQDomEntityReference with
<a href="#toEntityReference">toEntityReference</a>().
<p> <p>See also <a href="#toEntityReference">toEntityReference</a>().
@@ -404,23 +404,23 @@ is a <a href="qdomentityreference.html">TQDomEntityReference</a>; you can get th
<p>Reimplemented in <a href="qdomentityreference.html#isEntityReference">TQDomEntityReference</a>.
<h3 class=fn>bool <a name="isNotation"></a>TQDomNode::isNotation () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node is a notation; otherwise returns FALSE.
-<p> If this function returns TRUE, it does not imply that this object
+Returns true if the node is a notation; otherwise returns false.
+<p> If this function returns true, it does not imply that this object
is a <a href="qdomnotation.html">TQDomNotation</a>; you can get the TQDomNotation with <a href="#toNotation">toNotation</a>().
<p> <p>See also <a href="#toNotation">toNotation</a>().
<p>Reimplemented in <a href="qdomnotation.html#isNotation">TQDomNotation</a>.
<h3 class=fn>bool <a name="isNull"></a>TQDomNode::isNull () const
</h3>
-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.
<p>Example: <a href="outliner-example.html#x1909">xml/outliner/outlinetree.cpp</a>.
<h3 class=fn>bool <a name="isProcessingInstruction"></a>TQDomNode::isProcessingInstruction () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node is a processing instruction; otherwise
-returns FALSE.
-<p> If this function returns TRUE, it does not imply that this object
+Returns true if the node is a processing instruction; otherwise
+returns false.
+<p> If this function returns true, it does not imply that this object
is a <a href="qdomprocessinginstruction.html">TQDomProcessingInstruction</a>; you can get the
TQProcessingInstruction with <a href="#toProcessingInstruction">toProcessingInstruction</a>().
<p> <p>See also <a href="#toProcessingInstruction">toProcessingInstruction</a>().
@@ -428,14 +428,14 @@ TQProcessingInstruction with <a href="#toProcessingInstruction">toProcessingInst
<p>Reimplemented in <a href="qdomprocessinginstruction.html#isProcessingInstruction">TQDomProcessingInstruction</a>.
<h3 class=fn>bool <a name="isSupported"></a>TQDomNode::isSupported ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;feature, const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;version ) const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the DOM implementation implements the feature <em>feature</em> and this feature is supported by this node in the version
-<em>version</em>; otherwise returns FALSE.
+Returns true if the DOM implementation implements the feature <em>feature</em> and this feature is supported by this node in the version
+<em>version</em>; otherwise returns false.
<p> <p>See also <a href="qdomimplementation.html#hasFeature">TQDomImplementation::hasFeature</a>().
<h3 class=fn>bool <a name="isText"></a>TQDomNode::isText () const<tt> [virtual]</tt>
</h3>
-Returns TRUE if the node is a text node; otherwise returns FALSE.
-<p> If this function returns TRUE, it does not imply that this object
+Returns true if the node is a text node; otherwise returns false.
+<p> If this function returns true, it does not imply that this object
is a <a href="qdomtext.html">TQDomText</a>; you can get the TQDomText with <a href="#toText">toText</a>().
<p> <p>See also <a href="#toText">toText</a>().
@@ -544,8 +544,8 @@ merged).
<h3 class=fn>bool <a name="operator!-eq"></a>TQDomNode::operator!= ( const&nbsp;<a href="qdomnode.html">TQDomNode</a>&nbsp;&amp;&nbsp;n ) const
</h3>
-Returns TRUE if <em>n</em> and this DOM node are not equal; otherwise
-returns FALSE.
+Returns true if <em>n</em> and this DOM node are not equal; otherwise
+returns false.
<h3 class=fn><a href="qdomnode.html">TQDomNode</a>&nbsp;&amp; <a name="operator-eq"></a>TQDomNode::operator= ( const&nbsp;<a href="qdomnode.html">TQDomNode</a>&nbsp;&amp;&nbsp;n )
</h3>
@@ -556,8 +556,8 @@ will also change the other. If you want to make a <a href="shclass.html#deep-cop
<h3 class=fn>bool <a name="operator-eq-eq"></a>TQDomNode::operator== ( const&nbsp;<a href="qdomnode.html">TQDomNode</a>&nbsp;&amp;&nbsp;n ) const
</h3>
-Returns TRUE if <em>n</em> and this DOM node are equal; otherwise
-returns FALSE.
+Returns true if <em>n</em> and this DOM node are equal; otherwise
+returns false.
<h3 class=fn><a href="qdomdocument.html">TQDomDocument</a> <a name="ownerDocument"></a>TQDomNode::ownerDocument () const<tt> [virtual]</tt>
</h3>
@@ -566,7 +566,7 @@ Returns the document to which this node belongs.
<h3 class=fn><a href="qdomnode.html">TQDomNode</a> <a name="parentNode"></a>TQDomNode::parentNode () const<tt> [virtual]</tt>
</h3>
Returns the parent node. If this node has no parent, a null node
-is returned (i.e. a node for which <a href="#isNull">isNull</a>() returns TRUE).
+is returned (i.e. a node for which <a href="#isNull">isNull</a>() returns true).
<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="prefix"></a>TQDomNode::prefix () const<tt> [virtual]</tt>
</h3>