make Qt::MatchFlag consistent

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2021-02-17 00:01:51 +02:00
parent 6ca91dc015
commit cd5217cdbc

View file

@ -229,7 +229,6 @@ public:
WindowCloseButtonHint = 0x00080000,
BypassGraphicsProxyWidget = 0x00100000
};
Q_DECLARE_FLAGS(WindowFlags, WindowType)
enum WindowState {
@ -1234,13 +1233,13 @@ public:
MatchExactly = 0,
MatchContains = 1,
MatchStartsWith = 2,
MatchEndsWith = 3,
MatchRegExp = 4,
MatchWildcard = 5,
MatchFixedString = 8,
MatchCaseSensitive = 16,
MatchWrap = 32,
MatchRecursive = 64
MatchEndsWith = 4,
MatchRegExp = 8,
MatchWildcard = 16,
MatchFixedString = 32,
MatchCaseSensitive = 64,
MatchWrap = 128,
MatchRecursive = 256
};
Q_DECLARE_FLAGS(MatchFlags, MatchFlag)