diff options
Diffstat (limited to 'doc/html/tqtextstream.html')
-rw-r--r-- | doc/html/tqtextstream.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/tqtextstream.html b/doc/html/tqtextstream.html index bcf8ed3fc..37799be63 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> a, int mode ) +<h3 class=fn><a name="TQTextStream-5"></a>TQTextStream::TQTextStream ( <a href="tqbytearray.html">TQByteArray</a> a, int 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 << "pi = " << 3.14 << '\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( &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> & <a name="operator-lt-lt-d"></a>TQTextStream::operator<< ( const <a href="ntqcstring.html">TQCString</a> & s ) +<h3 class=fn><a href="tqtextstream.html">TQTextStream</a> & <a name="operator-lt-lt-d"></a>TQTextStream::operator<< ( const <a href="tqcstring.html">TQCString</a> & 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> & <a name="operator-gt-gt-d"></a>TQTextStream::operator>> ( <a href="ntqcstring.html">TQCString</a> & str ) +<h3 class=fn><a href="tqtextstream.html">TQTextStream</a> & <a name="operator-gt-gt-d"></a>TQTextStream::operator>> ( <a href="tqcstring.html">TQCString</a> & 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 |