summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/qvaluevector.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/qvaluevector.3qt')
-rw-r--r--doc/man/man3/qvaluevector.3qt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man/man3/qvaluevector.3qt b/doc/man/man3/qvaluevector.3qt
index 4c0fd516..8999a4be 100644
--- a/doc/man/man3/qvaluevector.3qt
+++ b/doc/man/man3/qvaluevector.3qt
@@ -337,7 +337,7 @@ Whenever inserting, removing or referencing elements in a vector, always make su
.PP
The iterators provided by vector are random access iterators, therefore you can use them with many generic algorithms, for example, algorithms provided by the STL or the QTL.
.PP
-Another way to find an element in the vector is by using the std::find() or qFind() algorithms. For example:
+Another way to find an element in the vector is by using the std::find() or tqFind() algorithms. For example:
.PP
.nf
.br
@@ -345,7 +345,7 @@ Another way to find an element in the vector is by using the std::find() or qFin
.br
...
.br
- QValueVector<int>::const_iterator it = qFind( vec.begin(), vec.end(), 3 );
+ QValueVector<int>::const_iterator it = tqFind( vec.begin(), vec.end(), 3 );
.br
if ( it != vector.end() )
.br