Project/ProjectFormsBrowser.py

branch
5_3_x
changeset 2777
2a81ccaa5a95
parent 2728
2d1140b6f1e2
child 3163
9f50365a0870
equal deleted inserted replaced
2775:a1a4715a4eb0 2777:2a81ccaa5a95
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.

eric ide

mercurial