Qt namespace: fix Q_FLAG_NS declaration for Qt::MouseEventFlags

The declaration was accidentally declaring the enumeration as
a flag type, not the actual flag type.

Change-Id: I515478b1628a6d72626da6d7e0061f1ea3d10c89
Pick-to: 6.3 6.2 5.15
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
bb10
Giuseppe D'Angelo 2022-03-01 16:03:44 +01:00
parent 8b5eb6cd09
commit 52e523c33f
1 changed files with 1 additions and 1 deletions

View File

@ -1817,7 +1817,7 @@ namespace Qt {
Q_ENUM_NS(TimerType)
Q_ENUM_NS(ScrollPhase)
Q_ENUM_NS(MouseEventSource)
Q_FLAG_NS(MouseEventFlag)
Q_FLAG_NS(MouseEventFlags)
Q_ENUM_NS(ChecksumType)
Q_ENUM_NS(HighDpiScaleFactorRoundingPolicy)
Q_ENUM_NS(TabFocusBehavior)