615 self.compileProc.readyReadStandardOutput.connect(self.__readStdout) |
615 self.compileProc.readyReadStandardOutput.connect(self.__readStdout) |
616 self.compileProc.readyReadStandardError.connect(self.__readStderr) |
616 self.compileProc.readyReadStandardError.connect(self.__readStderr) |
617 |
617 |
618 self.noDialog = noDialog |
618 self.noDialog = noDialog |
619 self.compileProc.start(rcc, args) |
619 self.compileProc.start(rcc, args) |
620 procStarted = self.compileProc.waitForStarted() |
620 procStarted = self.compileProc.waitForStarted(5000) |
621 if procStarted: |
621 if procStarted: |
622 self.compileRunning = True |
622 self.compileRunning = True |
623 e5App().getObject("ViewManager").enableEditorsCheckFocusIn(False) |
623 e5App().getObject("ViewManager").enableEditorsCheckFocusIn(False) |
624 return self.compileProc |
624 return self.compileProc |
625 else: |
625 else: |