584 elif self.project.pdata["PROGLANGUAGE"][0] == "Ruby": |
584 elif self.project.pdata["PROGLANGUAGE"][0] == "Ruby": |
585 self.compiledFile = os.path.join( |
585 self.compiledFile = os.path.join( |
586 dirname, self.RCFilenameFormatRuby.format(filename)) |
586 dirname, self.RCFilenameFormatRuby.format(filename)) |
587 |
587 |
588 args.append(fn) |
588 args.append(fn) |
589 self.connect(self.compileProc, SIGNAL('finished(int, QProcess::ExitStatus)'), |
589 self.compileProc.finished.connect(self.__compileQRCDone) |
590 self.__compileQRCDone) |
590 self.compileProc.readyReadStandardOutput.connect(self.__readStdout) |
591 self.connect(self.compileProc, SIGNAL('readyReadStandardOutput()'), |
591 self.compileProc.readyReadStandardOutput.connect(self.__readStderr) |
592 self.__readStdout) |
|
593 self.connect(self.compileProc, SIGNAL('readyReadStandardError()'), |
|
594 self.__readStderr) |
|
595 |
592 |
596 self.noDialog = noDialog |
593 self.noDialog = noDialog |
597 self.compileProc.start(rcc, args) |
594 self.compileProc.start(rcc, args) |
598 procStarted = self.compileProc.waitForStarted() |
595 procStarted = self.compileProc.waitForStarted() |
599 if procStarted: |
596 if procStarted: |