mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 02:42:55 +00:00
make Qt::MatchFlag consistent
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
6ca91dc015
commit
cd5217cdbc
1 changed files with 7 additions and 8 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue