736 self.compileProc.readyReadStandardOutput.connect(self.__readStdout) |
736 self.compileProc.readyReadStandardOutput.connect(self.__readStdout) |
737 self.compileProc.readyReadStandardError.connect(self.__readStderr) |
737 self.compileProc.readyReadStandardError.connect(self.__readStderr) |
738 |
738 |
739 self.noDialog = noDialog |
739 self.noDialog = noDialog |
740 self.compileProc.start(uic, args) |
740 self.compileProc.start(uic, args) |
741 procStarted = self.compileProc.waitForStarted() |
741 procStarted = self.compileProc.waitForStarted(5000) |
742 if procStarted: |
742 if procStarted: |
743 self.compileRunning = True |
743 self.compileRunning = True |
744 e5App().getObject("ViewManager").enableEditorsCheckFocusIn(False) |
744 e5App().getObject("ViewManager").enableEditorsCheckFocusIn(False) |
745 return self.compileProc |
745 return self.compileProc |
746 else: |
746 else: |