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

Cette révision appartient à :
Albert S. 2024-05-23 18:13:30 +02:00
Parent 6640504b49
révision cfc64705e3

Voir le fichier

@ -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);
}
}