diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdecore/kconfigdata.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/kconfigdata.h')
-rw-r--r-- | kdecore/kconfigdata.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kdecore/kconfigdata.h b/kdecore/kconfigdata.h index 281e8ecd6..e514b2781 100644 --- a/kdecore/kconfigdata.h +++ b/kdecore/kconfigdata.h @@ -22,7 +22,7 @@ #ifndef _KCONFIGDATA_H #define _KCONFIGDATA_H -#include <qmap.h> // generic red-black tree class +#include <tqmap.h> // generic red-black tree class #include "kdelibs_export.h" /** @@ -34,7 +34,7 @@ struct KDECORE_EXPORT KEntry KEntry() : mValue(0), bDirty(false), bNLS(false), bGlobal(false), bImmutable(false), bDeleted(false), bExpand(false) {} - QCString mValue; + TQCString mValue; /** * Must the entry be written back to disk? */ @@ -68,18 +68,18 @@ struct KDECORE_EXPORT KEntry */ struct KDECORE_EXPORT KEntryKey { - KEntryKey(const QCString& _group = 0, - const QCString& _key = 0) + KEntryKey(const TQCString& _group = 0, + const TQCString& _key = 0) : mGroup(_group), mKey(_key), bLocal(false), bDefault(false), c_key(_key.data()) {} /** * The "group" to which this EntryKey belongs */ - QCString mGroup; + TQCString mGroup; /** * The _actual_ key of the entry in question */ - QCString mKey; + TQCString mKey; /** * Entry is localised or not */ @@ -93,7 +93,7 @@ struct KDECORE_EXPORT KEntryKey }; /** - * compares two KEntryKeys (needed for QMap). + * compares two KEntryKeys (needed for TQMap). * @internal */ inline bool operator <(const KEntryKey &k1, const KEntryKey &k2) @@ -125,14 +125,14 @@ inline bool operator <(const KEntryKey &k1, const KEntryKey &k2) * with the group name. * @internal */ -typedef QMap<KEntryKey, KEntry> KEntryMap; +typedef TQMap<KEntryKey, KEntry> KEntryMap; /** * \relates KEntry * type for iterating over keys in a KEntryMap in sorted order. * @internal */ -typedef QMap<KEntryKey, KEntry>::Iterator KEntryMapIterator; +typedef TQMap<KEntryKey, KEntry>::Iterator KEntryMapIterator; /** * \relates KEntry @@ -141,6 +141,6 @@ typedef QMap<KEntryKey, KEntry>::Iterator KEntryMapIterator; * only examine them. * @internal */ -typedef QMap<KEntryKey, KEntry>::ConstIterator KEntryMapConstIterator; +typedef TQMap<KEntryKey, KEntry>::ConstIterator KEntryMapConstIterator; #endif |