aboutsummaryrefslogtreecommitdiff
path: root/src/core/kconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/kconfig.h')
-rw-r--r--src/core/kconfig.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/kconfig.h b/src/core/kconfig.h
index 2693f91e..1c9d23d7 100644
--- a/src/core/kconfig.h
+++ b/src/core/kconfig.h
@@ -77,6 +77,7 @@ public:
* Note that all values other than IncludeGlobals and CascadeConfig are
* convenience definitions for the basic mode.
* Do @em not combine them with anything.
+ * @see OpenFlags
*/
enum OpenFlag {
IncludeGlobals = 0x01, ///< Blend kdeglobals into the config object.
@@ -87,6 +88,9 @@ public:
NoGlobals = CascadeConfig, ///< Cascade to system settings, but omit user's globals.
FullConfig = IncludeGlobals | CascadeConfig ///< Fully-fledged config, including globals and cascading to system settings
};
+ /**
+ * Stores a combination of #OpenFlag values.
+ */
Q_DECLARE_FLAGS(OpenFlags, OpenFlag)
/**