--- a/Project/ProjectFormsBrowser.py Mon Aug 09 08:41:03 2010 +0200 +++ b/Project/ProjectFormsBrowser.py Mon Aug 09 15:36:47 2010 +0200 @@ -686,12 +686,9 @@ args.append('-x') args.append(fn) - self.connect(self.compileProc, SIGNAL('finished(int, QProcess::ExitStatus)'), - self.__compileUIDone) - self.connect(self.compileProc, SIGNAL('readyReadStandardOutput()'), - self.__readStdout) - self.connect(self.compileProc, SIGNAL('readyReadStandardError()'), - self.__readStderr) + self.compileProc.finished.connect(self.__compileUIDone) + self.compileProc.readyReadStandardOutput.connect(self.__readStdout) + self.compileProc.readyReadStandardOutput.connect(self.__readStderr) self.noDialog = noDialog self.compileProc.start(uic, args) @@ -906,4 +903,4 @@ "compileSelectedForms" : None, "generateDialogCode" : None, "newForm" : None, - } + } \ No newline at end of file