summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2024-01-11 13:53:21 +0100
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2024-01-12 12:59:27 +0100
commitab6e3c59a35e94a6740ae593b6101144fb65e089 (patch)
treed7527113b85480b2c2a52d95a30966d34962138a
parent574692e5ac95e1f2061812a43f14d325c077b7c8 (diff)
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>
-rw-r--r--src/widgets/dialogs/qcolordialog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/dialogs/qcolordialog.h b/src/widgets/dialogs/qcolordialog.h
index 974e00c649..824efa8f8c 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)