aboutsummaryrefslogtreecommitdiff
path: root/src/core/kconfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/kconfig.cpp')
-rw-r--r--src/core/kconfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/kconfig.cpp b/src/core/kconfig.cpp
index a2598f8e..65edefa9 100644
--- a/src/core/kconfig.cpp
+++ b/src/core/kconfig.cpp
@@ -344,7 +344,7 @@ QStringList KConfigPrivate::keyListImpl(const QByteArray &theGroup) const
QSet<QString> tmp;
for (; it != theEnd && it.key().mGroup == theGroup; ++it) {
const KEntryKey &key = it.key();
- if (key.mGroup == theGroup && !key.mKey.isNull() && !it->bDeleted) {
+ if (!key.mKey.isNull() && !it->bDeleted) {
tmp << QString::fromUtf8(key.mKey);
}
}