QColorDialog: Add trailing comma to new enum value

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

Pick-to: 6.7
Change-Id: Ia75e51facec100172de7dbb0854830d9981f0552
Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io>
This commit is contained in:
Volker Hilsheimer 2024-01-11 13:53:21 +01:00
parent 574692e5ac
commit ab6e3c59a3

View File

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