584 return |
584 return |
585 self.compileProc.setReadChannel(QProcess.StandardOutput) |
585 self.compileProc.setReadChannel(QProcess.StandardOutput) |
586 |
586 |
587 while self.compileProc and self.compileProc.canReadLine(): |
587 while self.compileProc and self.compileProc.canReadLine(): |
588 self.buf += str(self.compileProc.readLine(), |
588 self.buf += str(self.compileProc.readLine(), |
589 Preferences.getSystem("IOEncoding"), |
589 "utf-8", 'replace') |
590 'replace') |
|
591 |
590 |
592 def __readStderr(self): |
591 def __readStderr(self): |
593 """ |
592 """ |
594 Private slot to handle the readyReadStandardError signal of the |
593 Private slot to handle the readyReadStandardError signal of the |
595 pyuic/rbuic process. |
594 pyuic/rbuic process. |