475 args.append("-C{0}".format(os.path.dirname(fn))) |
475 args.append("-C{0}".format(os.path.dirname(fn))) |
476 args.append(fn) |
476 args.append(fn) |
477 |
477 |
478 self.compileProc.finished.connect(self.__compileIDLDone) |
478 self.compileProc.finished.connect(self.__compileIDLDone) |
479 self.compileProc.readyReadStandardOutput.connect(self.__readStdout) |
479 self.compileProc.readyReadStandardOutput.connect(self.__readStdout) |
480 self.compileProc.readyReadStandardOutput.connect(self.__readStderr) |
480 self.compileProc.readyReadStandardError.connect(self.__readStderr) |
481 |
481 |
482 self.noDialog = noDialog |
482 self.noDialog = noDialog |
483 self.compileProc.start(self.omniidl, args) |
483 self.compileProc.start(self.omniidl, args) |
484 procStarted = self.compileProc.waitForStarted() |
484 procStarted = self.compileProc.waitForStarted() |
485 if procStarted: |
485 if procStarted: |