diff options
Diffstat (limited to 'doc/qtl.doc')
-rw-r--r-- | doc/qtl.doc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/qtl.doc b/doc/qtl.doc index ac3661123..93affc2dc 100644 --- a/doc/qtl.doc +++ b/doc/qtl.doc @@ -259,14 +259,14 @@ must be valid). For example: \section2 tqCopy() The tqCopy() template function copies a range of elements to an -OutputIterator, in this case a QTextOStreamIterator: +OutputIterator, in this case a TQTextOStreamIterator: \code TQValueList<int> list; list.push_back( 100 ); list.push_back( 200 ); list.push_back( 300 ); - QTextOStream str( stdout ); - tqCopy( list.begin(), list.end(), QTextOStreamIterator(str) ); + TQTextOStream str( stdout ); + tqCopy( list.begin(), list.end(), TQTextOStreamIterator(str) ); \endcode \omit @@ -331,8 +331,8 @@ a standard C++ array with tqCopy(): \code int arr[] = { 100, 200, 300 }; - QTextOStream str( stdout ); - tqCopy( arr, arr + 3, QTextOStreamIterator( str ) ); + TQTextOStream str( stdout ); + tqCopy( arr, arr + 3, TQTextOStreamIterator( str ) ); \endcode \section1 Streaming |