forked from qt-creator/qt-creator
qmake: make more use of ProString built-ins
saves some noisy toQString() uses. Change-Id: I62a9e2725c4baabac311124d19c7d8b40f54c8f7 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io> (cherry picked from qtbase/ce5e6876d4a191087969134e489db99cf167ca69) Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
@@ -1777,13 +1777,12 @@ QMakeEvaluator::VisitReturn QMakeEvaluator::evaluateBuiltinConditional(
|
||||
if (args.count() >= 3) {
|
||||
const auto opts = split_value_list(args.at(2).toQStringRef());
|
||||
for (const ProString &opt : opts) {
|
||||
opt.toQString(m_tmp3);
|
||||
if (m_tmp3 == QLatin1String("append")) {
|
||||
if (opt == QLatin1String("append")) {
|
||||
mode = QIODevice::Append;
|
||||
} else if (m_tmp3 == QLatin1String("exe")) {
|
||||
} else if (opt == QLatin1String("exe")) {
|
||||
flags |= QMakeVfs::VfsExecutable;
|
||||
} else {
|
||||
evalError(fL1S("write_file(): invalid flag %1.").arg(m_tmp3));
|
||||
evalError(fL1S("write_file(): invalid flag %1.").arg(opt.toQString(m_tmp3)));
|
||||
return ReturnFalse;
|
||||
}
|
||||
}
|
||||
@@ -1821,21 +1820,20 @@ QMakeEvaluator::VisitReturn QMakeEvaluator::evaluateBuiltinConditional(
|
||||
if (args.count() >= 2) {
|
||||
const auto opts = split_value_list(args.at(1).toQStringRef());
|
||||
for (const ProString &opt : opts) {
|
||||
opt.toQString(m_tmp3);
|
||||
if (m_tmp3 == QLatin1String("transient")) {
|
||||
if (opt == QLatin1String("transient")) {
|
||||
persist = false;
|
||||
} else if (m_tmp3 == QLatin1String("super")) {
|
||||
} else if (opt == QLatin1String("super")) {
|
||||
target = TargetSuper;
|
||||
} else if (m_tmp3 == QLatin1String("stash")) {
|
||||
} else if (opt == QLatin1String("stash")) {
|
||||
target = TargetStash;
|
||||
} else if (m_tmp3 == QLatin1String("set")) {
|
||||
} else if (opt == QLatin1String("set")) {
|
||||
mode = CacheSet;
|
||||
} else if (m_tmp3 == QLatin1String("add")) {
|
||||
} else if (opt == QLatin1String("add")) {
|
||||
mode = CacheAdd;
|
||||
} else if (m_tmp3 == QLatin1String("sub")) {
|
||||
} else if (opt == QLatin1String("sub")) {
|
||||
mode = CacheSub;
|
||||
} else {
|
||||
evalError(fL1S("cache(): invalid flag %1.").arg(m_tmp3));
|
||||
evalError(fL1S("cache(): invalid flag %1.").arg(opt.toQString(m_tmp3)));
|
||||
return ReturnFalse;
|
||||
}
|
||||
}
|
||||
|
@@ -970,11 +970,9 @@ void QMakeEvaluator::setTemplate()
|
||||
values.erase(values.begin() + 1, values.end());
|
||||
}
|
||||
if (!m_option->user_template_prefix.isEmpty()) {
|
||||
QString val = values.first().toQString(m_tmp1);
|
||||
if (!val.startsWith(m_option->user_template_prefix)) {
|
||||
val.prepend(m_option->user_template_prefix);
|
||||
values = ProStringList(ProString(val));
|
||||
}
|
||||
ProString val = values.first();
|
||||
if (!val.startsWith(m_option->user_template_prefix))
|
||||
values = ProStringList(ProString(m_option->user_template_prefix + val));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1755,7 +1753,7 @@ QMakeEvaluator::VisitReturn QMakeEvaluator::evaluateBoolFunction(
|
||||
if (ret.at(0) == statics.strtrue)
|
||||
return ReturnTrue;
|
||||
bool ok;
|
||||
int val = ret.at(0).toQString(m_tmp1).toInt(&ok);
|
||||
int val = ret.at(0).toInt(&ok);
|
||||
if (ok) {
|
||||
if (val)
|
||||
return ReturnTrue;
|
||||
|
Reference in New Issue
Block a user