qmessagebox.h: Remove redundant semicolon after Q_ENUM

A redundant semicolon after Q_ENUM(StandardButton) caused a compiler
warning.

Remove it.

Fixes: QTBUG-122637
Pick-to: 6.7 6.6 6.5
Change-Id: I959c0c6d56bc312ad40f18c9455f4e6118b1c7c2
Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io>
bb10
Axel Spoerl 2024-02-26 18:34:46 +01:00
parent b653e05c92
commit 9af3a6c146
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ public:
FlagMask = 0x00000300, // obsolete
ButtonMask = ~FlagMask // obsolete
};
Q_ENUM(StandardButton);
Q_ENUM(StandardButton)
#if QT_VERSION < QT_VERSION_CHECK(7, 0, 0)
typedef StandardButton Button;