From 3bfe329b7136a58f20bd0f9011f20b2a4c65c0fe Mon Sep 17 00:00:00 2001 From: Thomas Fischer Date: Mon, 25 Feb 2019 22:11:06 +0100 Subject: 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 --- src/core/kconfigbase.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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 /**< -- cgit v1.2.1