summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/qvaluelist.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/qvaluelist.3qt')
-rw-r--r--doc/man/man3/qvaluelist.3qt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man/man3/qvaluelist.3qt b/doc/man/man3/qvaluelist.3qt
index 43cfe8fd..c42a7677 100644
--- a/doc/man/man3/qvaluelist.3qt
+++ b/doc/man/man3/qvaluelist.3qt
@@ -333,7 +333,7 @@ Notice that the latest changes to Mary's salary did not affect the value in the
.PP
There are several ways to find items in the list. The begin() and end() functions return iterators to the beginning and end of the list. The advantage of getting an iterator is that you can move forward or backward from this position by incrementing/decrementing the iterator. The iterator returned by end() points to the item which is one \fIpast\fR the last item in the container. The past-the-end iterator is still associated with the list it belongs to, however it is \fInot\fR 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().
.PP
-Another way to find an item in the list is by using the qFind() algorithm. For example:
+Another way to find an item in the list is by using the tqFind() algorithm. For example:
.PP
.nf
.br
@@ -341,7 +341,7 @@ Another way to find an item in the list is by using the qFind() algorithm. For e
.br
...
.br
- QValueList<int>::iterator it = qFind( list.begin(), list.end(), 3 );
+ QValueList<int>::iterator it = tqFind( list.begin(), list.end(), 3 );
.br
if ( it != list.end() )
.br