502 self.compileProc.readyReadStandardOutput.connect(self.__readStdout) |
502 self.compileProc.readyReadStandardOutput.connect(self.__readStdout) |
503 self.compileProc.readyReadStandardError.connect(self.__readStderr) |
503 self.compileProc.readyReadStandardError.connect(self.__readStderr) |
504 |
504 |
505 self.noDialog = noDialog |
505 self.noDialog = noDialog |
506 self.compileProc.start(self.omniidl, args) |
506 self.compileProc.start(self.omniidl, args) |
507 procStarted = self.compileProc.waitForStarted() |
507 procStarted = self.compileProc.waitForStarted(5000) |
508 if procStarted: |
508 if procStarted: |
509 self.compileRunning = True |
509 self.compileRunning = True |
510 return self.compileProc |
510 return self.compileProc |
511 else: |
511 else: |
512 self.compileRunning = False |
512 self.compileRunning = False |