fix inverted condition for "include file not found" message

Change-Id: Ib4bc5b2a277b630a09b5151f632476a399db26a6
Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
This commit is contained in:
Oswald Buddenhagen
2012-08-28 22:15:54 +02:00
parent 04574d03f5
commit 5c96be2b63

View File

@@ -1752,7 +1752,7 @@ bool QMakeEvaluator::evaluateFile(
#endif
return ok;
} else {
if (!(flags & LoadSilent) && IoUtils::exists(fileName))
if (!(flags & LoadSilent) && !IoUtils::exists(fileName))
languageWarning(fL1S("Include file %1 not found").arg(fileName));
return false;
}