summaryrefslogtreecommitdiffstats
path: root/doc/html/qxmlinputsource.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qxmlinputsource.html')
-rw-r--r--doc/html/qxmlinputsource.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/qxmlinputsource.html b/doc/html/qxmlinputsource.html
index 5f66d40fb..4a2071617 100644
--- a/doc/html/qxmlinputsource.html
+++ b/doc/html/qxmlinputsource.html
@@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
TQXmlReader subclasses.
<a href="#details">More...</a>
<p>All the functions in this class are <a href="threads.html#reentrant">reentrant</a> when TQt is built with thread support.</p>
-<p><tt>#include &lt;<a href="qxml-h.html">qxml.h</a>&gt;</tt>
+<p><tt>#include &lt;<a href="qxml-h.html">ntqxml.h</a>&gt;</tt>
<p><a href="qxmlinputsource-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
@@ -73,7 +73,7 @@ encoding declaration, then it assumes that the data is either in
UTF-8 or UTF-16, depending on whether it can find a byte-order
mark.
<p> There are two ways to populate the input source with data: you can
-construct it with a <a href="qiodevice.html">TQIODevice</a>* so that the input source reads the
+construct it with a <a href="ntqiodevice.html">TQIODevice</a>* so that the input source reads the
data from that device. Or you can set the data explicitly with one
of the <a href="#setData">setData</a>() functions.
<p> Usually you either construct a TQXmlInputSource that works on a
@@ -95,20 +95,20 @@ cases is that it tries to use the correct encoding.
Constructs an input source which contains no data.
<p> <p>See also <a href="#setData">setData</a>().
-<h3 class=fn><a name="TQXmlInputSource-2"></a>TQXmlInputSource::TQXmlInputSource ( <a href="qiodevice.html">TQIODevice</a>&nbsp;*&nbsp;dev )
+<h3 class=fn><a name="TQXmlInputSource-2"></a>TQXmlInputSource::TQXmlInputSource ( <a href="ntqiodevice.html">TQIODevice</a>&nbsp;*&nbsp;dev )
</h3>
Constructs an input source and gets the data from device <em>dev</em>.
If <em>dev</em> is not open, it is opened in read-only mode. If <em>dev</em>
is 0 or it is not possible to read from the device, the input
source will contain no data.
-<p> <p>See also <a href="#setData">setData</a>(), <a href="#fetchData">fetchData</a>(), and <a href="qiodevice.html">TQIODevice</a>.
+<p> <p>See also <a href="#setData">setData</a>(), <a href="#fetchData">fetchData</a>(), and <a href="ntqiodevice.html">TQIODevice</a>.
-<h3 class=fn><a name="TQXmlInputSource-3"></a>TQXmlInputSource::TQXmlInputSource ( <a href="qfile.html">TQFile</a>&nbsp;&amp;&nbsp;file )
+<h3 class=fn><a name="TQXmlInputSource-3"></a>TQXmlInputSource::TQXmlInputSource ( <a href="ntqfile.html">TQFile</a>&nbsp;&amp;&nbsp;file )
</h3> <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
<p> Constructs an input source and gets the data from the file <em>file</em>. If the
file cannot be read the input source is empty.
-<h3 class=fn><a name="TQXmlInputSource-4"></a>TQXmlInputSource::TQXmlInputSource ( <a href="qtextstream.html">TQTextStream</a>&nbsp;&amp;&nbsp;stream )
+<h3 class=fn><a name="TQXmlInputSource-4"></a>TQXmlInputSource::TQXmlInputSource ( <a href="ntqtextstream.html">TQTextStream</a>&nbsp;&amp;&nbsp;stream )
</h3> <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
<p> Constructs an input source and gets the data from the text stream <em>stream</em>.
@@ -116,9 +116,9 @@ file cannot be read the input source is empty.
</h3>
Destructor.
-<h3 class=fn><a href="qstring.html">TQString</a> <a name="data"></a>TQXmlInputSource::data ()<tt> [virtual]</tt>
+<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="data"></a>TQXmlInputSource::data ()<tt> [virtual]</tt>
</h3>
-Returns the data the input source contains or <a href="qstring.html#TQString-null">TQString::null</a> if the
+Returns the data the input source contains or <a href="ntqstring.html#TQString-null">TQString::null</a> if the
input source does not contain any data.
<p> <p>See also <a href="#setData">setData</a>(), <a href="#TQXmlInputSource">TQXmlInputSource</a>(), and <a href="#fetchData">fetchData</a>().
@@ -137,11 +137,11 @@ call to <a href="#next">next</a>() (if the data had run out).
<p> You don't normally need to use this function if you use next().
<p> <p>See also <a href="#data">data</a>(), <a href="#next">next</a>(), and <a href="#TQXmlInputSource">TQXmlInputSource</a>().
-<h3 class=fn><a href="qstring.html">TQString</a> <a name="fromRawData"></a>TQXmlInputSource::fromRawData ( const&nbsp;<a href="qbytearray.html">TQByteArray</a>&nbsp;&amp;&nbsp;data, bool&nbsp;beginning = FALSE )<tt> [virtual protected]</tt>
+<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="fromRawData"></a>TQXmlInputSource::fromRawData ( const&nbsp;<a href="qbytearray.html">TQByteArray</a>&nbsp;&amp;&nbsp;data, bool&nbsp;beginning = FALSE )<tt> [virtual protected]</tt>
</h3>
This function reads the XML file from <em>data</em> and tries to
recognize the encoding. It converts the raw data <em>data</em> into a
-<a href="qstring.html">TQString</a> and returns it. It tries its best to get the correct
+<a href="ntqstring.html">TQString</a> and returns it. It tries its best to get the correct
encoding for the XML file.
<p> If <em>beginning</em> is TRUE, this function assumes that the data
starts at the beginning of a new XML document and looks for an
@@ -167,7 +167,7 @@ input source for more than one parse.
<p> <p>See also <a href="#next">next</a>().
<p>Example: <a href="tagreader-with-features-example.html#x1975">xml/tagreader-with-features/tagreader.cpp</a>.
-<h3 class=fn>void <a name="setData"></a>TQXmlInputSource::setData ( const&nbsp;<a href="qstring.html">TQString</a>&nbsp;&amp;&nbsp;dat )<tt> [virtual]</tt>
+<h3 class=fn>void <a name="setData"></a>TQXmlInputSource::setData ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;dat )<tt> [virtual]</tt>
</h3>
Sets the data of the input source to <em>dat</em>.
<p> If the input source already contains data, this function deletes