From 87d29563e3ccdeb7fea0197e262e667ef323ff9c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 7 Jul 2024 14:56:09 +0900 Subject: Rename utility class nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tqtextstream.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/tqtextstream.html') 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:

This constructor is equivalent to the constructor taking a TQString* parameter. -

TQTextStream::TQTextStream ( TQByteArray a, int mode ) +

TQTextStream::TQTextStream ( TQByteArray a, int mode )

Constructs a text stream that operates on the byte array, a, through an internal TQBuffer device. The mode argument is passed to the device's open() function; see TQIODevice::mode().

Example:

-    TQByteArray array;
+    TQByteArray array;
     TQTextStream ts( array, IO_WriteOnly );
     ts << "pi = " << 3.14 << '\0'; // array == "pi = 3.14"
     
@@ -220,7 +220,7 @@ array. The array will be expanded when data is written beyond the end of the string.

Same example, using a TQBuffer:

-    TQByteArray array;
+    TQByteArray array;
     TQBuffer buf( array );
     buf.open( 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.
 

Writes s to the stream and returns a reference to the stream. -

TQTextStream & TQTextStream::operator<< ( const TQCString & s ) +

TQTextStream & TQTextStream::operator<< ( const TQCString & s )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Writes s 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.

A word consists of characters for which isspace() returns FALSE. -

TQTextStream & TQTextStream::operator>> ( TQCString & str ) +

TQTextStream & TQTextStream::operator>> ( TQCString & str )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Reads a "word" from the stream into str and returns a reference -- cgit v1.2.3