Enable unicode regular expressions in ignore phrases too
This commit is contained in:
@@ -29,7 +29,8 @@ public:
|
|||||||
: pattern(_pattern)
|
: pattern(_pattern)
|
||||||
, _isRegex(isRegex)
|
, _isRegex(isRegex)
|
||||||
, regex(_isRegex ? _pattern : "\\b" + QRegularExpression::escape(_pattern) + "\\b",
|
, regex(_isRegex ? _pattern : "\\b" + QRegularExpression::escape(_pattern) + "\\b",
|
||||||
QRegularExpression::CaseInsensitiveOption)
|
QRegularExpression::CaseInsensitiveOption |
|
||||||
|
QRegularExpression::UseUnicodePropertiesOption)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user