From 6f57abfc9cd3acf1d648aee696947ac9216adb71 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 9 Sep 2024 14:57:42 +0900 Subject: Rename remaining ntq[s-z]* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tqvaluelist.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/tqvaluelist.html') diff --git a/doc/html/tqvaluelist.html b/doc/html/tqvaluelist.html index 62b86eac..6dfd8b1c 100644 --- a/doc/html/tqvaluelist.html +++ b/doc/html/tqvaluelist.html @@ -125,7 +125,7 @@ provides lists.

TQValueList is a TQt implementation of an STL-like list container. It can be used in your application if the standard list is not available for your target platform(s). TQValueList is part of the -TQt Template Library. +TQt Template Library.

TQValueList<T> defines a template instance to create a list of values that all have the class T. Note that TQValueList does not store pointers to the members of the list; it holds a copy of @@ -213,7 +213,7 @@ list it belongs to, however it is not dereferenceable; operator*() will not return a well-defined value. If the list is empty(), the iterator returned by begin() will equal the iterator returned by end(). -

Another way to find an item in the list is by using the tqFind() algorithm. For example: +

Another way to find an item in the list is by using the tqFind() algorithm. For example:

     TQValueList<int> list;
     ...
@@ -269,7 +269,7 @@ specific positions within the list.
 are several variants of the remove() function, which removes a
 specific item from the list. The remove() function will find and
 remove items according to a specific item value.
-

Lists can also be sorted using the TQt Template +

Lists can also be sorted using the TQt Template Library. For example with qHeapSort():

Example:

@@ -281,7 +281,7 @@ remove items according to a specific item value.
     qHeapSort( list );
     
-

See also TQValueListIterator, TQt Template Library Classes, Implicitly and Explicitly Shared Classes, and Non-GUI Classes. +

See also TQValueListIterator, TQt Template Library Classes, Implicitly and Explicitly Shared Classes, and Non-GUI Classes.


Member Type Documentation

TQValueList::ConstIterator

-- cgit v1.2.1