Project/ProjectFormsBrowser.py

changeset 2776
43b8060a4b44
parent 2771
281c9b30dd91
child 2791
a9577f248f04
child 2965
d133c7edd88a
equal deleted inserted replaced
2774:72fab2c15e28 2776:43b8060a4b44
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.

eric ide

mercurial