diff options
Diffstat (limited to 'src/core/kconfigini.cpp')
-rw-r--r-- | src/core/kconfigini.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/kconfigini.cpp b/src/core/kconfigini.cpp index 798ce571..4b3123eb 100644 --- a/src/core/kconfigini.cpp +++ b/src/core/kconfigini.cpp @@ -167,7 +167,7 @@ KConfigIniBackend::parseConfig(const QByteArray ¤tLocale, KEntryMap &entry } while ((start = end + 2) <= line.length() && line.at(end + 1) == '['); currentGroup = newGroup; - groupSkip = entryMap.getEntryOption(currentGroup, nullptr, nullptr, KEntryMap::EntryImmutable); + groupSkip = entryMap.getEntryOption(currentGroup, {}, {}, KEntryMap::EntryImmutable); if (groupSkip && !bDefault) { continue; @@ -201,7 +201,7 @@ KConfigIniBackend::parseConfig(const QByteArray ¤tLocale, KEntryMap &entry continue; } - KEntryMap::EntryOptions entryOptions = nullptr; + KEntryMap::EntryOptions entryOptions = {}; if (groupOptionImmutable) { entryOptions |= KEntryMap::EntryImmutable; } |