--- a/Project/ProjectResourcesBrowser.py Mon Aug 09 08:41:03 2010 +0200 +++ b/Project/ProjectResourcesBrowser.py Mon Aug 09 15:36:47 2010 +0200 @@ -586,12 +586,9 @@ dirname, self.RCFilenameFormatRuby.format(filename)) args.append(fn) - self.connect(self.compileProc, SIGNAL('finished(int, QProcess::ExitStatus)'), - self.__compileQRCDone) - self.connect(self.compileProc, SIGNAL('readyReadStandardOutput()'), - self.__readStdout) - self.connect(self.compileProc, SIGNAL('readyReadStandardError()'), - self.__readStderr) + self.compileProc.finished.connect(self.__compileQRCDone) + self.compileProc.readyReadStandardOutput.connect(self.__readStdout) + self.compileProc.readyReadStandardOutput.connect(self.__readStderr) self.noDialog = noDialog self.compileProc.start(rcc, args) @@ -814,4 +811,4 @@ "compileChangedResources" : None, "compileSelectedResources" : None, "newResource" : None, - } + } \ No newline at end of file