aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/kconfig.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/kconfig.cpp b/src/core/kconfig.cpp
index 9b8d2e62..b4777575 100644
--- a/src/core/kconfig.cpp
+++ b/src/core/kconfig.cpp
@@ -31,6 +31,8 @@
#include <QSet>
#include <QThreadStorage>
+#include <set>
+
#if KCONFIG_USE_DBUS
#include <QDBusConnection>
#include <QDBusMessage>
@@ -347,14 +349,14 @@ QStringList KConfigPrivate::keyListImpl(const QByteArray &theGroup) const
if (it != theEnd) {
++it; // advance past the special group entry marker
- QSet<QString> tmp;
+ std::set<QString> tmp; // unique set, sorted for unittests
for (; it != theEnd && it.key().mGroup == theGroup; ++it) {
const KEntryKey &key = it.key();
if (!key.mKey.isNull() && !it->bDeleted) {
- tmp << QString::fromUtf8(key.mKey);
+ tmp.insert(QString::fromUtf8(key.mKey));
}
}
- keys = tmp.values();
+ keys = QList<QString>(tmp.begin(), tmp.end());
}
return keys;