598 return |
598 return |
599 self.compileProc.setReadChannel(QProcess.StandardOutput) |
599 self.compileProc.setReadChannel(QProcess.StandardOutput) |
600 |
600 |
601 while self.compileProc and self.compileProc.canReadLine(): |
601 while self.compileProc and self.compileProc.canReadLine(): |
602 self.buf += str(self.compileProc.readLine(), |
602 self.buf += str(self.compileProc.readLine(), |
603 Preferences.getSystem("IOEncoding"), |
603 "utf-8", 'replace') |
604 'replace') |
|
605 |
604 |
606 def __readStderr(self): |
605 def __readStderr(self): |
607 """ |
606 """ |
608 Private slot to handle the readyReadStandardError signal of the |
607 Private slot to handle the readyReadStandardError signal of the |
609 pyuic/rbuic process. |
608 pyuic/rbuic process. |