summaryrefslogtreecommitdiffstats
path: root/doc/html/tqdomdocument.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqdomdocument.html')
-rw-r--r--doc/html/tqdomdocument.html24
1 files changed, 12 insertions, 12 deletions
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 <a href="tqdomdocumenttype.html">TQDomDocumentType</a> nodes. In those cases
this function returns a <a href="tqdomnode.html#isNull">null node</a>.
-<p> If <em>deep</em> is TRUE, this function imports not only the node <em>importedNode</em> but its whole subtree; if it is FALSE, only the <em>importedNode</em> is imported. The argument <em>deep</em> has no effect on
+<p> If <em>deep</em> is true, this function imports not only the node <em>importedNode</em> but its whole subtree; if it is false, only the <em>importedNode</em> is imported. The argument <em>deep</em> has no effect on
<a href="tqdomattr.html">TQDomAttr</a> and <a href="tqdomentityreference.html">TQDomEntityReference</a> 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:
<tr bgcolor="#a2c511"> <th valign="top">Node Type <th valign="top">Behaviour
<tr bgcolor="#f0f0f0"> <td valign="top">TQDomAttr
<td valign="top">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 <em>importedNode</em> is always imported for attribute nodes:
<em>deep</em> has no effect.
<tr bgcolor="#d0d0d0"> <td valign="top">TQDomDocument
<td valign="top">Document nodes cannot be imported.
<tr bgcolor="#f0f0f0"> <td valign="top">TQDomDocumentFragment
-<td valign="top">If <em>deep</em> is TRUE, this function imports the whole
+<td valign="top">If <em>deep</em> is true, this function imports the whole
document fragment; otherwise it only generates an empty
document fragment.
<tr bgcolor="#d0d0d0"> <td valign="top">TQDomDocumentType
<td valign="top">Document type nodes cannot be imported.
<tr bgcolor="#f0f0f0"> <td valign="top">TQDomElement
-<td valign="top">Attributes for which <a href="tqdomattr.html#specified">TQDomAttr::specified</a>() is TRUE are
-also imported, other attributes are not imported. If <em>deep</em> is TRUE, this function also imports the subtree of <em>importedNode</em>; otherwise it imports only the element node
+<td valign="top">Attributes for which <a href="tqdomattr.html#specified">TQDomAttr::specified</a>() is true are
+also imported, other attributes are not imported. If <em>deep</em> is true, this function also imports the subtree of <em>importedNode</em>; otherwise it imports only the element node
(and some attributes, see above).
<tr bgcolor="#d0d0d0"> <td valign="top">TQDomEntity
<td valign="top">Entity nodes can be imported, but at the moment there is
@@ -373,7 +373,7 @@ copied to the new node.
<h3 class=fn>bool <a name="isDocument"></a>TQDomDocument::isDocument () const<tt> [virtual]</tt>
</h3>
-Returns TRUE.
+Returns true.
<p>Reimplemented from <a href="tqdomnode.html#isDocument">TQDomNode</a>.
<h3 class=fn><a href="tqdomnode.html#NodeType-enum">TQDomNode::NodeType</a> <a name="nodeType"></a>TQDomDocument::nodeType () const<tt> [virtual]</tt>
@@ -393,19 +393,19 @@ will also change the other. If you want to make a <a href="shclass.html#deep-cop
This function parses the XML document from the byte array <em>buffer</em> and sets it as the content of the document. It tries to
detect the encoding of the document as required by the XML
specification.
-<p> If <em>namespaceProcessing</em> is TRUE, the parser recognizes
+<p> If <em>namespaceProcessing</em> is true, the parser recognizes
namespaces in the XML file and sets the prefix name, local name
and namespace URI to appropriate values. If <em>namespaceProcessing</em>
-is FALSE, the parser does no namespace processing when it reads
+is false, the parser does no namespace processing when it reads
the XML file.
-<p> If a parse error occurs, the function returns FALSE; otherwise it
-returns TRUE. If a parse error occurs and <em>errorMsg</em>, <em>errorLine</em> and <em>errorColumn</em> are not 0, the error message is
+<p> If a parse error occurs, the function returns false; otherwise it
+returns true. If a parse error occurs and <em>errorMsg</em>, <em>errorLine</em> and <em>errorColumn</em> are not 0, the error message is
placed in <em>*errorMsg</em>, the line number <em>*errorLine</em> and the
column number in <em>*errorColumn</em>.
-<p> If <em>namespaceProcessing</em> is TRUE, the function <a href="tqdomnode.html#prefix">TQDomNode::prefix</a>()
+<p> If <em>namespaceProcessing</em> is true, the function <a href="tqdomnode.html#prefix">TQDomNode::prefix</a>()
returns a string for all elements and attributes. It returns an
empty string if the element or attribute has no prefix.
-<p> If <em>namespaceProcessing</em> is FALSE, the functions
+<p> If <em>namespaceProcessing</em> is false, the functions
TQDomNode::prefix(), <a href="tqdomnode.html#localName">TQDomNode::localName</a>() and
<a href="tqdomnode.html#namespaceURI">TQDomNode::namespaceURI</a>() return <a href="tqstring.html#TQString-null">TQString::null</a>.
<p> <p>See also <a href="tqdomnode.html#namespaceURI">TQDomNode::namespaceURI</a>(), <a href="tqdomnode.html#localName">TQDomNode::localName</a>(), <a href="tqdomnode.html#prefix">TQDomNode::prefix</a>(), <a href="tqstring.html#isNull">TQString::isNull</a>(), and <a href="tqstring.html#isEmpty">TQString::isEmpty</a>().