QColorDialog: Add trailing comma to new enum value

As commented in header review, this will make future header reviews
less noisy.

Change-Id: Ia75e51facec100172de7dbb0854830d9981f0552
Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io>
(cherry picked from commit ab6e3c59a35e94a6740ae593b6101144fb65e089)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Volker Hilsheimer 2024-01-11 13:53:21 +01:00 committed by Qt Cherry-pick Bot
parent 2c10bc7e12
commit 11db1179a8

View File

@ -27,7 +27,7 @@ public:
ShowAlphaChannel = 0x00000001,
NoButtons = 0x00000002,
DontUseNativeDialog = 0x00000004,
NoEyeDropperButton = 0x00000008
NoEyeDropperButton = 0x00000008,
};
Q_ENUM(ColorDialogOption)