summaryrefslogtreecommitdiffstats
path: root/doc/html/tqtextstream.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqtextstream.html')
-rw-r--r--doc/html/tqtextstream.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/tqtextstream.html b/doc/html/tqtextstream.html
index bcf8ed3f..37799be6 100644
--- a/doc/html/tqtextstream.html
+++ b/doc/html/tqtextstream.html
@@ -203,14 +203,14 @@ the end of the string. Note that the string will not be truncated:
<p> This constructor is equivalent to the constructor taking a <a href="tqstring.html">TQString</a>*
parameter.
-<h3 class=fn><a name="TQTextStream-5"></a>TQTextStream::TQTextStream ( <a href="qbytearray.html">TQByteArray</a>&nbsp;a, int&nbsp;mode )
+<h3 class=fn><a name="TQTextStream-5"></a>TQTextStream::TQTextStream ( <a href="tqbytearray.html">TQByteArray</a>&nbsp;a, int&nbsp;mode )
</h3>
Constructs a text stream that operates on the byte array, <em>a</em>,
through an internal <a href="ntqbuffer.html">TQBuffer</a> device. The <em>mode</em> argument is passed
to the device's open() function; see <a href="ntqiodevice.html#mode">TQIODevice::mode</a>().
<p> Example:
<pre>
- <a href="qbytearray.html">TQByteArray</a> array;
+ <a href="tqbytearray.html">TQByteArray</a> array;
TQTextStream ts( array, <a href="ntqfile.html#open">IO_WriteOnly</a> );
ts &lt;&lt; "pi = " &lt;&lt; 3.14 &lt;&lt; '\0'; // array == "pi = 3.14"
</pre>
@@ -220,7 +220,7 @@ array. The array will be expanded when data is written beyond the
end of the string.
<p> Same example, using a TQBuffer:
<pre>
- <a href="qbytearray.html">TQByteArray</a> array;
+ <a href="tqbytearray.html">TQByteArray</a> array;
<a href="ntqbuffer.html">TQBuffer</a> buf( array );
buf.<a href="ntqiodevice.html#open">open</a>( IO_WriteOnly );
TQTextStream ts( &amp;buf );
@@ -393,7 +393,7 @@ Encoding set for the TQTextStream.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Writes <em>s</em> to the stream and returns a reference to the stream.
-<h3 class=fn><a href="tqtextstream.html">TQTextStream</a>&nbsp;&amp; <a name="operator-lt-lt-d"></a>TQTextStream::operator&lt;&lt; ( const&nbsp;<a href="ntqcstring.html">TQCString</a>&nbsp;&amp;&nbsp;s )
+<h3 class=fn><a href="tqtextstream.html">TQTextStream</a>&nbsp;&amp; <a name="operator-lt-lt-d"></a>TQTextStream::operator&lt;&lt; ( const&nbsp;<a href="tqcstring.html">TQCString</a>&nbsp;&amp;&nbsp;s )
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Writes <em>s</em> to the stream and returns a reference to the stream.
@@ -488,7 +488,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
to the stream.
<p> A word consists of characters for which isspace() returns FALSE.
-<h3 class=fn><a href="tqtextstream.html">TQTextStream</a>&nbsp;&amp; <a name="operator-gt-gt-d"></a>TQTextStream::operator&gt;&gt; ( <a href="ntqcstring.html">TQCString</a>&nbsp;&amp;&nbsp;str )
+<h3 class=fn><a href="tqtextstream.html">TQTextStream</a>&nbsp;&amp; <a name="operator-gt-gt-d"></a>TQTextStream::operator&gt;&gt; ( <a href="tqcstring.html">TQCString</a>&nbsp;&amp;&nbsp;str )
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Reads a "word" from the stream into <em>str</em> and returns a reference