diff options
Diffstat (limited to 'doc/qdict.doc')
-rw-r--r-- | doc/qdict.doc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/qdict.doc b/doc/qdict.doc index 65918b2a3..315db4107 100644 --- a/doc/qdict.doc +++ b/doc/qdict.doc @@ -139,7 +139,7 @@ Example #2: \code - TQStringList styleList = QStyleFactory::styles(); + TQStringList styleList = TQStyleFactory::styles(); styleList.sort(); QDict<int> letterDict( 17, FALSE ); for ( TQStringList::Iterator it = styleList.begin(); it != styleList.end(); ++it ) { @@ -162,7 +162,7 @@ \endcode In the example we are using the dictionary to provide fast random access to the keys, and we don't care what the values are. The - example is used to generate a menu of QStyles, each with a unique + example is used to generate a menu of TQStyles, each with a unique accelerator key (or no accelerator if there are no unused letters left). |