summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qstandardpaths.h
diff options
context:
space:
mode:
authorJonathan Ketchker <iontankatchker@gmail.com>2024-01-19 23:45:21 +0200
committerJonathan Ketchker <iontankatchker@gmail.com>2024-01-23 15:48:41 +0200
commitafa6cbed649add8abcef7f07e97e83b16983ff16 (patch)
treeb8a16ae6dd0824d0d72a0b9ed844d9008e6f8f00 /src/corelib/io/qstandardpaths.h
parent868e91474c085bd3bf8c5635fc069731afc2e44a (diff)
Fix code style - add missing trailing comma
For better consistency and git changes tracking add trailing comma at the end of the last value of an enum. See also code-review at: https://codereview.qt-project.org /c/qt/qtbase/+/528392/comment/663ba25a_51ed514b/ Pick-to: 6.7 Change-Id: Ibcfcfb1ba1a8ba4b59297bf17103181a0ee6eafc Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/io/qstandardpaths.h')
-rw-r--r--src/corelib/io/qstandardpaths.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qstandardpaths.h b/src/corelib/io/qstandardpaths.h
index 3997957d25..56aa2b100c 100644
--- a/src/corelib/io/qstandardpaths.h
+++ b/src/corelib/io/qstandardpaths.h
@@ -40,7 +40,7 @@ public:
PublicShareLocation,
TemplatesLocation,
StateLocation,
- GenericStateLocation
+ GenericStateLocation,
};
Q_ENUM(StandardLocation)