qt6: wildcardmatcher: use correct option for QRegularExpression::wildcardToRegularExpression()
Este commit está contenido en:
padre
09ae06532d
commit
552f058370
@ -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);
|
||||
}
|
||||
}
|
||||
|
Cargando…
Referencia en una nueva incidencia
Block a user