summaryrefslogtreecommitdiffstats
path: root/doc/qmap.doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/qmap.doc')
-rw-r--r--doc/qmap.doc16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/qmap.doc b/doc/qmap.doc
index 78ffa93e..2aded365 100644
--- a/doc/qmap.doc
+++ b/doc/qmap.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 @@
\ingroup shared
\mainclass
- QMap is a Qt implementation of an STL-like map container. It can
+ QMap is a TQt implementation of an STL-like map container. It can
be used in your application if the standard \c map is not
available on all your target platforms. QMap is part of the \link
- ntqtl.html Qt Template Library\endlink.
+ ntqtl.html TQt Template Library\endlink.
QMap\<Key, Data\> defines a template instance to create a
dictionary with keys of type Key and values of type Data. QMap
@@ -86,7 +86,7 @@
The class used for the key requires that the \c operator< is
implemented to define ordering of the keys.
- QMap's function naming is consistent with the other Qt classes
+ QMap's function naming is consistent with the other TQt classes
(e.g., count(), isEmpty()). QMap also provides extra functions for
compatibility with STL algorithms, such as size() and empty().
Programmers already familiar with the STL \c map can use these
@@ -237,7 +237,7 @@
/*! \enum QMap::value_type
Corresponds to QPair\<key_type, mapped_type\>. */
/*! \enum QMap::ValueType
- Corresponds to QPair\<key_type, mapped_type\>, Qt style.*/
+ Corresponds to QPair\<key_type, mapped_type\>, TQt style.*/
/*! \enum QMap::pointer
Pointer to value_type.*/
/*! \enum QMap::const_pointer
@@ -251,11 +251,11 @@
/*! \enum QMap::iterator
The map's iterator type.*/
/*! \enum QMap::Iterator
- The map's iterator type, Qt style. */
+ The map's iterator type, TQt style. */
/*! \enum QMap::const_iterator
The map's const iterator type.*/
/*! \enum QMap::ConstIterator
- The map's const iterator type, Qt style.*/
+ The map's const iterator type, TQt style.*/
/*! \enum QMap::difference_type
\internal */
/*! \enum QMap::Priv