fix return statement in #if 0'd code

This commit is contained in:
Oswald Buddenhagen
2011-04-20 22:26:25 +02:00
parent c504d28eb5
commit bff02614db

View File

@@ -2897,7 +2897,7 @@ ProFileEvaluator::Private::VisitReturn ProFileEvaluator::Private::evaluateCondit
case T_SYSTEM: {
if (args.count() != 1) {
evalError(fL1S("system(exec) requires one argument."));
ReturnFalse;
return ReturnFalse;
}
return returnBool(system((QLatin1String("cd ")
+ IoUtils::shellQuote(currentDirectory())