diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/tqdomnode.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqdomnode.html')
-rw-r--r-- | doc/html/tqdomnode.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/html/tqdomnode.html b/doc/html/tqdomnode.html index ad1b7ec3b..1bf210bf0 100644 --- a/doc/html/tqdomnode.html +++ b/doc/html/tqdomnode.html @@ -426,7 +426,7 @@ TQProcessingInstruction with <a href="#toProcessingInstruction">toProcessingInst <p> <p>See also <a href="#toProcessingInstruction">toProcessingInstruction</a>(). <p>Reimplemented in <a href="tqdomprocessinginstruction.html#isProcessingInstruction">TQDomProcessingInstruction</a>. -<h3 class=fn>bool <a name="isSupported"></a>TQDomNode::isSupported ( const <a href="ntqstring.html">TQString</a> & feature, const <a href="ntqstring.html">TQString</a> & version ) const<tt> [virtual]</tt> +<h3 class=fn>bool <a name="isSupported"></a>TQDomNode::isSupported ( const <a href="tqstring.html">TQString</a> & feature, const <a href="tqstring.html">TQString</a> & 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. @@ -447,26 +447,26 @@ Returns the last child of the node. If there is no child node, a returned node will also change the node in the document tree. <p> <p>See also <a href="#firstChild">firstChild</a>() and <a href="#childNodes">childNodes</a>(). -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="localName"></a>TQDomNode::localName () const<tt> [virtual]</tt> +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="localName"></a>TQDomNode::localName () const<tt> [virtual]</tt> </h3> If the node uses namespaces, this function returns the local name -of the node; otherwise it returns <a href="ntqstring.html#TQString-null">TQString::null</a>. +of the node; otherwise it returns <a href="tqstring.html#TQString-null">TQString::null</a>. <p> Only nodes of type <a href="#NodeType-enum">ElementNode</a> or <a href="#NodeType-enum">AttributeNode</a> can have namespaces. A namespace must have been specified at creation time; it is not possible to add a namespace afterwards. <p> <p>See also <a href="#prefix">prefix</a>(), <a href="#namespaceURI">namespaceURI</a>(), <a href="tqdomdocument.html#createElementNS">TQDomDocument::createElementNS</a>(), and <a href="tqdomdocument.html#createAttributeNS">TQDomDocument::createAttributeNS</a>(). -<h3 class=fn><a href="tqdomnode.html">TQDomNode</a> <a name="namedItem"></a>TQDomNode::namedItem ( const <a href="ntqstring.html">TQString</a> & name ) const +<h3 class=fn><a href="tqdomnode.html">TQDomNode</a> <a name="namedItem"></a>TQDomNode::namedItem ( const <a href="tqstring.html">TQString</a> & name ) const </h3> Returns the first direct child node for which <a href="#nodeName">nodeName</a>() equals <em>name</em>. <p> If no such direct child exists, a <a href="#isNull">null node</a> is returned. <p> <p>See also <a href="#nodeName">nodeName</a>(). -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="namespaceURI"></a>TQDomNode::namespaceURI () const<tt> [virtual]</tt> +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="namespaceURI"></a>TQDomNode::namespaceURI () const<tt> [virtual]</tt> </h3> -Returns the namespace URI of this node or <a href="ntqstring.html#TQString-null">TQString::null</a> if the +Returns the namespace URI of this node or <a href="tqstring.html#TQString-null">TQString::null</a> if the node has no namespace URI. <p> Only nodes of type <a href="#NodeType-enum">ElementNode</a> or <a href="#NodeType-enum">AttributeNode</a> can have @@ -490,7 +490,7 @@ return the node representing the <h2> tag. <p> <p>See also <a href="#previousSibling">previousSibling</a>(). <p>Example: <a href="outliner-example.html#x1910">xml/outliner/outlinetree.cpp</a>. -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="nodeName"></a>TQDomNode::nodeName () const<tt> [virtual]</tt> +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="nodeName"></a>TQDomNode::nodeName () const<tt> [virtual]</tt> </h3> Returns the name of the node. <p> The meaning of the name depends on the subclass: @@ -518,7 +518,7 @@ Returns the type of the node. <p> <p>See also <a href="#toAttr">toAttr</a>(), <a href="#toCDATASection">toCDATASection</a>(), <a href="#toDocumentFragment">toDocumentFragment</a>(), <a href="#toDocument">toDocument</a>(), <a href="#toDocumentType">toDocumentType</a>(), <a href="#toElement">toElement</a>(), <a href="#toEntityReference">toEntityReference</a>(), <a href="#toText">toText</a>(), <a href="#toEntity">toEntity</a>(), <a href="#toNotation">toNotation</a>(), <a href="#toProcessingInstruction">toProcessingInstruction</a>(), <a href="#toCharacterData">toCharacterData</a>(), and <a href="#toComment">toComment</a>(). <p>Reimplemented in <a href="tqdomdocumenttype.html#nodeType">TQDomDocumentType</a>, <a href="tqdomdocument.html#nodeType">TQDomDocument</a>, <a href="tqdomdocumentfragment.html#nodeType">TQDomDocumentFragment</a>, <a href="tqdomcharacterdata.html#nodeType">TQDomCharacterData</a>, <a href="tqdomattr.html#nodeType">TQDomAttr</a>, <a href="tqdomelement.html#nodeType">TQDomElement</a>, <a href="tqdomnotation.html#nodeType">TQDomNotation</a>, <a href="tqdomentity.html#nodeType">TQDomEntity</a>, <a href="tqdomentityreference.html#nodeType">TQDomEntityReference</a>, and <a href="tqdomprocessinginstruction.html#nodeType">TQDomProcessingInstruction</a>. -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="nodeValue"></a>TQDomNode::nodeValue () const<tt> [virtual]</tt> +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="nodeValue"></a>TQDomNode::nodeValue () const<tt> [virtual]</tt> </h3> Returns the value of the node. <p> The meaning of the value depends on the subclass: @@ -531,7 +531,7 @@ Returns the value of the node. <tr bgcolor="#f0f0f0"> <td valign="top">TQDomText <td valign="top">The text </table></center> <p> All the other subclasses do not have a node value and will return -<a href="ntqstring.html#TQString-null">TQString::null</a>. +<a href="tqstring.html#TQString-null">TQString::null</a>. <p> <p>See also <a href="#setNodeValue">setNodeValue</a>() and <a href="#nodeName">nodeName</a>(). <p>Example: <a href="outliner-example.html#x1912">xml/outliner/outlinetree.cpp</a>. @@ -568,9 +568,9 @@ Returns the document to which this node belongs. 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). -<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="prefix"></a>TQDomNode::prefix () const<tt> [virtual]</tt> +<h3 class=fn><a href="tqstring.html">TQString</a> <a name="prefix"></a>TQDomNode::prefix () const<tt> [virtual]</tt> </h3> -Returns the namespace prefix of the node or <a href="ntqstring.html#TQString-null">TQString::null</a> if the +Returns the namespace prefix of the node or <a href="tqstring.html#TQString-null">TQString::null</a> if the node has no namespace prefix. <p> Only nodes of type <a href="#NodeType-enum">ElementNode</a> or <a href="#NodeType-enum">AttributeNode</a> can have @@ -626,12 +626,12 @@ Writes the XML representation of the node and all its children to the stream <em>str</em>. This function uses <em>indent</em> as the amount of space to indent the node. -<h3 class=fn>void <a name="setNodeValue"></a>TQDomNode::setNodeValue ( const <a href="ntqstring.html">TQString</a> & v )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setNodeValue"></a>TQDomNode::setNodeValue ( const <a href="tqstring.html">TQString</a> & v )<tt> [virtual]</tt> </h3> Sets the node's value to <em>v</em>. <p> <p>See also <a href="#nodeValue">nodeValue</a>(). -<h3 class=fn>void <a name="setPrefix"></a>TQDomNode::setPrefix ( const <a href="ntqstring.html">TQString</a> & pre )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setPrefix"></a>TQDomNode::setPrefix ( const <a href="tqstring.html">TQString</a> & pre )<tt> [virtual]</tt> </h3> If the node has a namespace prefix, this function changes the namespace prefix of the node to <em>pre</em>. Otherwise this function |