diff options
author | Ahmad Samir <a.samirh78@gmail.com> | 2021-02-22 17:34:03 +0200 |
---|---|---|
committer | Ahmad Samir <a.samirh78@gmail.com> | 2021-02-22 17:34:03 +0200 |
commit | 186755fd56b58dc97250846c5305ef89f9487f86 (patch) | |
tree | 23860a4cf52df11b2c224ba6ea1a8521e5cfb403 /src/core/kcoreconfigskeleton.h | |
parent | a06ffb355573f3ad7d6ae475685843f18e38f2d4 (diff) | |
download | kconfig-186755fd56b58dc97250846c5305ef89f9487f86.tar.gz kconfig-186755fd56b58dc97250846c5305ef89f9487f86.tar.bz2 |
Add a trailing comma to last member in enum
GIT_SILENT
Diffstat (limited to 'src/core/kcoreconfigskeleton.h')
-rw-r--r-- | src/core/kcoreconfigskeleton.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/kcoreconfigskeleton.h b/src/core/kcoreconfigskeleton.h index 69f52060..e7b814e8 100644 --- a/src/core/kcoreconfigskeleton.h +++ b/src/core/kcoreconfigskeleton.h @@ -543,7 +543,11 @@ public: class KCONFIGCORE_EXPORT ItemString: public KConfigSkeletonGenericItem < QString > { public: - enum Type { Normal, Password, Path }; + enum Type { + Normal, + Password, + Path, + }; /** @enum Type The type of string that is held in this item |