496 self.compileProc.readyReadStandardOutput.connect(self.__readStdout) |
496 self.compileProc.readyReadStandardOutput.connect(self.__readStdout) |
497 self.compileProc.readyReadStandardError.connect(self.__readStderr) |
497 self.compileProc.readyReadStandardError.connect(self.__readStderr) |
498 |
498 |
499 self.noDialog = noDialog |
499 self.noDialog = noDialog |
500 self.compileProc.start(self.omniidl, args) |
500 self.compileProc.start(self.omniidl, args) |
501 procStarted = self.compileProc.waitForStarted() |
501 procStarted = self.compileProc.waitForStarted(5000) |
502 if procStarted: |
502 if procStarted: |
503 self.compileRunning = True |
503 self.compileRunning = True |
504 return self.compileProc |
504 return self.compileProc |
505 else: |
505 else: |
506 self.compileRunning = False |
506 self.compileRunning = False |