forked from qt-creator/qt-creator
compile without ascii cast (to be in sync with qt)
This commit is contained in:
@@ -1847,7 +1847,7 @@ bool ProFileEvaluator::Private::evaluateConditionalFunction(const QString &funct
|
||||
dirstr = file.left(slsh+1);
|
||||
file = file.right(file.length() - slsh - 1);
|
||||
}
|
||||
if (file.contains('*') || file.contains('?'))
|
||||
if (file.contains(QLatin1Char('*')) || file.contains(QLatin1Char('?')))
|
||||
cond = QDir(dirstr).entryList(QStringList(file)).count();
|
||||
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user