859 self.compileProc.finished.connect(self.__compileUIDone) |
859 self.compileProc.finished.connect(self.__compileUIDone) |
860 self.compileProc.readyReadStandardOutput.connect(self.__readStdout) |
860 self.compileProc.readyReadStandardOutput.connect(self.__readStdout) |
861 self.compileProc.readyReadStandardError.connect(self.__readStderr) |
861 self.compileProc.readyReadStandardError.connect(self.__readStderr) |
862 |
862 |
863 self.noDialog = noDialog |
863 self.noDialog = noDialog |
|
864 self.compileProc.setWorkingDirectory(self.project.getProjectPath()) |
864 self.compileProc.start(uicompiler, args) |
865 self.compileProc.start(uicompiler, args) |
865 procStarted = self.compileProc.waitForStarted(5000) |
866 procStarted = self.compileProc.waitForStarted(5000) |
866 if procStarted: |
867 if procStarted: |
867 self.compileRunning = True |
868 self.compileRunning = True |
868 e5App().getObject("ViewManager").enableEditorsCheckFocusIn(False) |
869 e5App().getObject("ViewManager").enableEditorsCheckFocusIn(False) |