diff options
Diffstat (limited to 'src/core/kconfigbackend_p.h')
-rw-r--r-- | src/core/kconfigbackend_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/kconfigbackend_p.h b/src/core/kconfigbackend_p.h index 5f8b61b5..7eb1774e 100644 --- a/src/core/kconfigbackend_p.h +++ b/src/core/kconfigbackend_p.h @@ -70,7 +70,7 @@ public: enum ParseOption { ParseGlobal = 1, /// entries should be marked as @em global ParseDefaults = 2, /// entries should be marked as @em default - ParseExpansions = 4 /// entries are allowed to be marked as @em expandable + ParseExpansions = 4, /// entries are allowed to be marked as @em expandable }; Q_FLAG(ParseOption) /// @typedef typedef QFlags<ParseOption> ParseOptions @@ -88,7 +88,7 @@ public: enum ParseInfo { ParseOk, /// the configuration was opened read/write ParseImmutable, /// the configuration is @em immutable - ParseOpenError /// the configuration could not be opened + ParseOpenError, /// the configuration could not be opened }; /** |