Project/ProjectFormsBrowser.py

changeset 464
a2b1d1770ef0
parent 461
34528aaedf1c
child 470
99d8c50ba42f
equal deleted inserted replaced
463:8d0309c4b7f6 464:a2b1d1770ef0
684 elif self.project.pdata["PROGLANGUAGE"][0] == "Ruby": 684 elif self.project.pdata["PROGLANGUAGE"][0] == "Ruby":
685 self.compiledFile = ofn + '.rb' 685 self.compiledFile = ofn + '.rb'
686 args.append('-x') 686 args.append('-x')
687 687
688 args.append(fn) 688 args.append(fn)
689 self.connect(self.compileProc, SIGNAL('finished(int, QProcess::ExitStatus)'), 689 self.compileProc.finished.connect(self.__compileUIDone)
690 self.__compileUIDone) 690 self.compileProc.readyReadStandardOutput.connect(self.__readStdout)
691 self.connect(self.compileProc, SIGNAL('readyReadStandardOutput()'), 691 self.compileProc.readyReadStandardOutput.connect(self.__readStderr)
692 self.__readStdout)
693 self.connect(self.compileProc, SIGNAL('readyReadStandardError()'),
694 self.__readStderr)
695 692
696 self.noDialog = noDialog 693 self.noDialog = noDialog
697 self.compileProc.start(uic, args) 694 self.compileProc.start(uic, args)
698 procStarted = self.compileProc.waitForStarted() 695 procStarted = self.compileProc.waitForStarted()
699 if procStarted: 696 if procStarted:

eric ide

mercurial