diff options
author | Thomas Fischer <fischer@unix-ag.uni-kl.de> | 2019-02-25 22:11:06 +0100 |
---|---|---|
committer | Thomas Fischer <fischer@unix-ag.uni-kl.de> | 2019-02-25 22:11:06 +0100 |
commit | 3bfe329b7136a58f20bd0f9011f20b2a4c65c0fe (patch) | |
tree | 431cad78e5728f6b851e040f1612c142a9347c67 | |
parent | 2cdcd4f30666fd1095ab7cf31361e404db871075 (diff) | |
download | kconfig-3bfe329b7136a58f20bd0f9011f20b2a4c65c0fe.tar.gz kconfig-3bfe329b7136a58f20bd0f9011f20b2a4c65c0fe.tar.bz2 |
KConfig: Assign documentation to correct enum value
Summary:
In commit 8579ec54 (D13034), the Notify value got introduced in
enum WriteConfigFlag in KConfigBase. When adding this new value,
the value and its documentation (Doxygen format, /**<) got placed
wrongly.
After commit 8579ec54, the documentation for Notify "documents"
the previously existing value Localized, whereas the documentation
for Localized documents Notify.
Simply exchanging the order of the documentation comments fixes
this issue.
Reviewers: broulik, dfaure, davidedmundson
Reviewed By: davidedmundson
Subscribers: kde-frameworks-devel
Tags: documentation, frameworks
Differential Revision: https://phabricator.kde.org/D19320
-rw-r--r-- | src/core/kconfigbase.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/kconfigbase.h b/src/core/kconfigbase.h index 62a0cc31..c4ad7a57 100644 --- a/src/core/kconfigbase.h +++ b/src/core/kconfigbase.h @@ -58,13 +58,13 @@ public: */ Localized = 0x04, /**< - * Notify remote KConfigWatchers of changes (requires DBus support) - * Implied persistent - * @since 5.51 + * Add the locale tag to the key when writing it. */ Notify = 0x08 | Persistent, /**< - * Add the locale tag to the key when writing it. + * Notify remote KConfigWatchers of changes (requires DBus support) + * Implied persistent + * @since 5.51 */ Normal = Persistent /**< |