compile everything with QT_USE_FAST_CONCATENATION

This commit is contained in:
Oswald Buddenhagen
2010-02-04 14:58:33 +01:00
parent 7df3082b6c
commit e70530c5ad
9 changed files with 15 additions and 13 deletions

View File

@@ -2875,7 +2875,7 @@ bool ProFileEvaluator::Private::evaluateFeatureFile(
QString currFn = currentFileName();
if (IoUtils::fileName(currFn) == IoUtils::fileName(fn)) {
for (int root = 0; root < m_option->feature_roots.size(); ++root)
if (m_option->feature_roots.at(root) + fn == currFn) {
if (currFn == m_option->feature_roots.at(root) + fn) {
start_root = root + 1;
break;
}