summaryrefslogtreecommitdiffstats
path: root/doc/qvaluevector.doc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
commitea318d1431c89e647598c510c4245c6571aa5f46 (patch)
tree996d29b80c30d453dda86d1a23162d441628f169 /doc/qvaluevector.doc
parentaaf89d4b48f69c9293feb187db26362e550b5561 (diff)
downloadtqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz
tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip
Update to latest tqt3 automated conversion
Diffstat (limited to 'doc/qvaluevector.doc')
-rw-r--r--doc/qvaluevector.doc16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/qvaluevector.doc b/doc/qvaluevector.doc
index acc1a6c4..c0098c73 100644
--- a/doc/qvaluevector.doc
+++ b/doc/qvaluevector.doc
@@ -42,7 +42,7 @@
*****************************************************************************/
/*!
- \class QValueVector qvaluevector.h
+ \class QValueVector ntqvaluevector.h
\brief The QValueVector class is a value-based template class that provides a dynamic array.
\ingroup qtl
@@ -54,7 +54,7 @@
QValueVector is a Qt implementation of an STL-like vector
container. It can be used in your application if the standard \c
vector is not available for your target platforms. QValueVector is
- part of the \link qtl.html Qt Template Library\endlink.
+ part of the \link ntqtl.html Qt Template Library\endlink.
QValueVector\<T\> defines a template instance to create a vector
of values that all have the class T. QValueVector does not store
@@ -89,13 +89,13 @@
cases this is sufficient.
QValueVector uses an STL-like syntax to manipulate and address the
- objects it contains. See \link qtl.html this document\endlink for
+ objects it contains. See \link ntqtl.html this document\endlink for
more information.
Example:
\code
- #include <qvaluevector.h>
- #include <qstring.h>
+ #include <ntqvaluevector.h>
+ #include <ntqstring.h>
#include <stdio.h>
class Employee
@@ -193,11 +193,11 @@
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 \link qtl.html
+ example, algorithms provided by the STL or the \link ntqtl.html
QTL\endlink.
Another way to find an element in the vector is by using the
- std::find() or \link qtl.html#qFind qFind()\endlink algorithms.
+ std::find() or \link ntqtl.html#qFind qFind()\endlink algorithms.
For example:
\code
@@ -276,7 +276,7 @@
specific element, or range of elements, from the vector.
Vectors can be also sorted with various STL algorithms , or it can
- be sorted using the \link qtl.html Qt Template Library\endlink.
+ be sorted using the \link ntqtl.html Qt Template Library\endlink.
For example with qHeapSort():
Example: