From 11db1179a8644cd49459fc8ccf04cc26dc696352 Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Thu, 11 Jan 2024 13:53:21 +0100 Subject: [PATCH] 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 (cherry picked from commit ab6e3c59a35e94a6740ae593b6101144fb65e089) Reviewed-by: Qt Cherry-pick Bot --- src/widgets/dialogs/qcolordialog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/dialogs/qcolordialog.h b/src/widgets/dialogs/qcolordialog.h index 974e00c6491..824efa8f8c2 100644 --- a/src/widgets/dialogs/qcolordialog.h +++ b/src/widgets/dialogs/qcolordialog.h @@ -27,7 +27,7 @@ public: ShowAlphaChannel = 0x00000001, NoButtons = 0x00000002, DontUseNativeDialog = 0x00000004, - NoEyeDropperButton = 0x00000008 + NoEyeDropperButton = 0x00000008, }; Q_ENUM(ColorDialogOption)