From 0cf411b09cf5d8970b873a338a69eae98d5ce5d8 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 8 Jun 2024 12:56:43 +0900 Subject: Rename text nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/qt-template-lib.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/qt-template-lib.html') diff --git a/doc/html/qt-template-lib.html b/doc/html/qt-template-lib.html index 3f3c4c831..a695db8b3 100644 --- a/doc/html/qt-template-lib.html +++ b/doc/html/qt-template-lib.html @@ -239,7 +239,7 @@ OutputIterator, in this case a TQTextOStreamIterator: list.push_back( 100 ); list.push_back( 200 ); list.push_back( 300 ); - TQTextOStream str( stdout ); + TQTextOStream str( stdout ); tqCopy( list.begin(), list.end(), TQTextOStreamIterator(str) ); @@ -287,7 +287,7 @@ as possible. In the above example, you could just as easily print out a standard C++ array with tqCopy():

     int arr[] = { 100, 200, 300 };
-    TQTextOStream str( stdout );
+    TQTextOStream str( stdout );
     tqCopy( arr, arr + 3, TQTextOStreamIterator( str ) ); 
 
-- cgit v1.2.3