Use QLatin1Char to prevent build error due to stricter QT_NO_CAST_FROM_ASCII

Signed-off-by: Nicolas Fella <nicolas.fella@gmx.de>
This commit is contained in:
Nicolas Fella 2021-01-22 20:31:28 +01:00 коммит произвёл Kevin Ottens (Rebase PR Action)
Родитель 398101ae3d
Коммит ab064c92b6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -588,7 +588,7 @@ QString ExcludedFiles::convertToRegexpSyntax(QString exclude, bool wildcardsMatc
// Translate [! to [^
QString bracketExpr = exclude.mid(i, j - i + 1);
if (bracketExpr.startsWith(QLatin1String("[!")))
bracketExpr[1] = '^';
bracketExpr[1] = QLatin1Char('^');
regex.append(bracketExpr);
i = j;
break;