diff options
Diffstat (limited to 'src/core/kconfigdata.cpp')
-rw-r--r-- | src/core/kconfigdata.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/kconfigdata.cpp b/src/core/kconfigdata.cpp index 8ceea7ee..ada7125f 100644 --- a/src/core/kconfigdata.cpp +++ b/src/core/kconfigdata.cpp @@ -312,7 +312,7 @@ bool KEntryMap::revertEntry(const QByteArray &group, const QByteArray &key, KEnt KEntryKey defaultKey(entry.key()); defaultKey.bDefault = true; // qDebug() << "looking up default entry with key=" << defaultKey; - const ConstIterator defaultEntry = constFind(defaultKey); + const auto defaultEntry = constFind(defaultKey); if (defaultEntry != constEnd()) { Q_ASSERT(defaultEntry.key().bDefault); // qDebug() << "found, update entry"; |