qt6: wildcardmatcher: use correct option for QRegularExpression::wildcardToRegularExpression()

This commit is contained in:
Albert S. 2024-05-23 18:13:30 +02:00
parent 6640504b49
commit cfc64705e3

View File

@ -6,7 +6,7 @@ void WildcardMatcher::setPatterns(QStringList patterns)
for(QString &str : patterns)
{
QRegularExpression regexp;
regexp.setPattern(QRegularExpression::wildcardToRegularExpression(str));
regexp.setPattern(QRegularExpression::wildcardToRegularExpression(str, QRegularExpression::UnanchoredWildcardConversion));
this->regexes.append(regexp);
}
}