summaryrefslogtreecommitdiffstats
path: root/doc/qvaluevector.doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/qvaluevector.doc')
-rw-r--r--doc/qvaluevector.doc12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/qvaluevector.doc b/doc/qvaluevector.doc
index 770a5995..262b66b5 100644
--- a/doc/qvaluevector.doc
+++ b/doc/qvaluevector.doc
@@ -4,7 +4,7 @@
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
-** This file is part of the Qt GUI Toolkit.
+** This file is part of the TQt GUI Toolkit.
**
** This file may be used under the terms of the GNU General
** Public License versions 2.0 or 3.0 as published by the Free
@@ -13,7 +13,7 @@
** Alternatively you may (at your option) use any later version
** of the GNU General Public License if such license has been
** publicly approved by Trolltech ASA (or its successors, if any)
-** and the KDE Free Qt Foundation.
+** and the KDE Free TQt Foundation.
**
** Please review the following information to ensure GNU General
** Public Licensing requirements will be met:
@@ -51,10 +51,10 @@
\mainclass
\reentrant
- QValueVector is a Qt implementation of an STL-like vector
+ QValueVector is a TQt 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 ntqtl.html Qt Template Library\endlink.
+ part of the \link ntqtl.html TQt 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
@@ -147,7 +147,7 @@
affect the value in the vector because the vector created a copy
of Joe's entry.
- Many Qt functions return const value vectors; to iterate over
+ Many TQt functions return const value vectors; to iterate over
these you should make a copy and iterate over the copy.
There are several ways to find items in the vector. The begin()
@@ -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 ntqtl.html Qt Template Library\endlink.
+ be sorted using the \link ntqtl.html TQt Template Library\endlink.
For example with qHeapSort():
Example: