summaryrefslogtreecommitdiffstats
path: root/doc/html/tqdomnode.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqdomnode.html')
-rw-r--r--doc/html/tqdomnode.html96
1 files changed, 48 insertions, 48 deletions
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; }
<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>
@@ -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.
<p> <p>See also <a href="#isNull">isNull</a>().
-<h3 class=fn><a href="tqdomnode.html">TQDomNode</a> <a name="cloneNode"></a>TQDomNode::cloneNode ( bool&nbsp;deep = TRUE ) const<tt> [virtual]</tt>
+<h3 class=fn><a href="tqdomnode.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="tqdomnode.html">TQDomNode</a> <a name="firstChild"></a>TQDomNode::firstChild () const<tt> [virtual]</tt>
@@ -274,13 +274,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="tqdomnode.html">TQDomNode</a> <a name="insertAfter"></a>TQDomNode::insertAfter ( const&nbsp;<a href="tqdomnode.html">TQDomNode</a>&nbsp;&amp;&nbsp;newChild, const&nbsp;<a href="tqdomnode.html">TQDomNode</a>&nbsp;&amp;&nbsp;refChild )<tt> [virtual]</tt>
</h3>
@@ -311,8 +311,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>().
@@ -320,9 +320,9 @@ toAttribute().
<p>Reimplemented in <a href="tqdomattr.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="tqdomcdatasection.html">TQDomCDATASection</a>; you can get the TQDomCDATASection with
<a href="#toCDATASection">toCDATASection</a>().
<p> <p>See also <a href="#toCDATASection">toCDATASection</a>().
@@ -330,9 +330,9 @@ is a <a href="tqdomcdatasection.html">TQDomCDATASection</a>; you can get the TQD
<p>Reimplemented in <a href="tqdomcdatasection.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="tqdomcharacterdata.html">TQDomCharacterData</a>; you can get the TQDomCharacterData with
<a href="#toCharacterData">toCharacterData</a>().
<p> <p>See also <a href="#toCharacterData">toCharacterData</a>().
@@ -340,25 +340,25 @@ is a <a href="tqdomcharacterdata.html">TQDomCharacterData</a>; you can get the T
<p>Reimplemented in <a href="tqdomcharacterdata.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="tqdomcomment.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="tqdomcomment.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="tqdomdocument.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="tqdomdocument.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="tqdomdocumentfragment.html">TQDomDocumentFragment</a>; you can get the TQDomDocumentFragment
with <a href="#toDocumentFragment">toDocumentFragment</a>().
<p> <p>See also <a href="#toDocumentFragment">toDocumentFragment</a>().
@@ -366,9 +366,9 @@ with <a href="#toDocumentFragment">toDocumentFragment</a>().
<p>Reimplemented in <a href="tqdomdocumentfragment.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="tqdomdocumenttype.html">TQDomDocumentType</a>; you can get the TQDomDocumentType with
<a href="#toDocumentType">toDocumentType</a>().
<p> <p>See also <a href="#toDocumentType">toDocumentType</a>().
@@ -376,8 +376,8 @@ is a <a href="tqdomdocumenttype.html">TQDomDocumentType</a>; you can get the TQD
<p>Reimplemented in <a href="tqdomdocumenttype.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="tqdomelement.html">TQDomElement</a>; you can get the TQDomElement with <a href="#toElement">toElement</a>().
<p> <p>See also <a href="#toElement">toElement</a>().
@@ -385,17 +385,17 @@ is a <a href="tqdomelement.html">TQDomElement</a>; you can get the TQDomElement
<p>Reimplemented in <a href="tqdomelement.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="tqdomentity.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="tqdomentity.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="tqdomentityreference.html">TQDomEntityReference</a>; you can get the TQDomEntityReference with
<a href="#toEntityReference">toEntityReference</a>().
<p> <p>See also <a href="#toEntityReference">toEntityReference</a>().
@@ -403,23 +403,23 @@ is a <a href="tqdomentityreference.html">TQDomEntityReference</a>; you can get t
<p>Reimplemented in <a href="tqdomentityreference.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="tqdomnotation.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="tqdomnotation.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="tqdomprocessinginstruction.html">TQDomProcessingInstruction</a>; you can get the
TQProcessingInstruction with <a href="#toProcessingInstruction">toProcessingInstruction</a>().
<p> <p>See also <a href="#toProcessingInstruction">toProcessingInstruction</a>().
@@ -427,14 +427,14 @@ TQProcessingInstruction with <a href="#toProcessingInstruction">toProcessingInst
<p>Reimplemented in <a href="tqdomprocessinginstruction.html#isProcessingInstruction">TQDomProcessingInstruction</a>.
<h3 class=fn>bool <a name="isSupported"></a>TQDomNode::isSupported ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;feature, const&nbsp;<a href="tqstring.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="tqdomimplementation.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="tqdomtext.html">TQDomText</a>; you can get the TQDomText with <a href="#toText">toText</a>().
<p> <p>See also <a href="#toText">toText</a>().
@@ -543,8 +543,8 @@ merged).
<h3 class=fn>bool <a name="operator!-eq"></a>TQDomNode::operator!= ( const&nbsp;<a href="tqdomnode.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="tqdomnode.html">TQDomNode</a>&nbsp;&amp; <a name="operator-eq"></a>TQDomNode::operator= ( const&nbsp;<a href="tqdomnode.html">TQDomNode</a>&nbsp;&amp;&nbsp;n )
</h3>
@@ -555,8 +555,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="tqdomnode.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="tqdomdocument.html">TQDomDocument</a> <a name="ownerDocument"></a>TQDomNode::ownerDocument () const<tt> [virtual]</tt>
</h3>
@@ -565,7 +565,7 @@ Returns the document to which this node belongs.
<h3 class=fn><a href="tqdomnode.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="tqstring.html">TQString</a> <a name="prefix"></a>TQDomNode::prefix () const<tt> [virtual]</tt>
</h3>