forked from qt-creator/qt-creator
		
	Braces cleanup
Change-Id: I8413252c90a1487d291f15d92837c30ab697b245 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
		@@ -496,13 +496,12 @@ Utils::SynchronousProcessResponse Command::runSynchronous(const QStringList &arg
 | 
			
		||||
    Utils::ExitCodeInterpreter defaultInterpreter(this);
 | 
			
		||||
    Utils::ExitCodeInterpreter *currentInterpreter = interpreter ? interpreter : &defaultInterpreter;
 | 
			
		||||
    // Result
 | 
			
		||||
    if (timedOut) {
 | 
			
		||||
    if (timedOut)
 | 
			
		||||
        response.result = Utils::SynchronousProcessResponse::Hang;
 | 
			
		||||
    } else if (process->exitStatus() != QProcess::NormalExit) {
 | 
			
		||||
    else if (process->exitStatus() != QProcess::NormalExit)
 | 
			
		||||
        response.result = Utils::SynchronousProcessResponse::TerminatedAbnormally;
 | 
			
		||||
    } else {
 | 
			
		||||
    else
 | 
			
		||||
        response.result = currentInterpreter->interpretExitCode(process->exitCode());
 | 
			
		||||
    }
 | 
			
		||||
    return response;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user