Paste P268

Masterwork From Distant Lands
ActivePublic

Authored by davidedmundson on Oct 15 2018, 2:49 PM.
diff --git a/src/core/kconfig.cpp b/src/core/kconfig.cpp
index df3ad47..bc2871c 100644
--- a/src/core/kconfig.cpp
+++ b/src/core/kconfig.cpp
@@ -916,7 +916,7 @@ KEntryMap::EntryOptions convertToOptions(KConfig::WriteConfigFlags flags)
if (flags & KConfig::Localized) {
options |= KEntryMap::EntryLocalized;
}
- if (flags & KConfig::Notify) {
+ if (flags.testFlag(KConfig::Notify)) {
options |= KEntryMap::EntryNotify;
}
return options;
davidedmundson edited the content of this paste. (Show Details)Oct 15 2018, 2:49 PM
davidedmundson changed the title of this paste from untitled to Masterwork From Distant Lands.