93ea2303c5
changes: -fix for potential security exploit (CAN-2005-3068) -compatibility changes for PyQt 3.15
22 lines
896 B
Text
22 lines
896 B
Text
$NetBSD: patch-aa,v 1.4 2005/10/05 16:34:00 drochner Exp $
|
|
|
|
--- eric/Project/ProjectBrowser.py.orig 2005-07-24 14:20:33.000000000 +0200
|
|
+++ eric/Project/ProjectBrowser.py
|
|
@@ -2721,7 +2721,7 @@ class ProjectFormsBrowser(PBrowser):
|
|
self.compileProc = QProcess()
|
|
|
|
if self.project.pdata["PROGLANGUAGE"][0] == "Python":
|
|
- self.uicompiler = 'pyuic'
|
|
+ self.uicompiler = 'pyuic' + sys.version[0:3]
|
|
elif self.project.pdata["PROGLANGUAGE"][0] == "Ruby":
|
|
self.uicompiler = 'rbuic'
|
|
|
|
@@ -3328,7 +3328,7 @@ class ProjectTranslationsBrowser(PBrowse
|
|
|
|
self.pylupdateProc = QProcess()
|
|
|
|
- pylupdate = 'pylupdate'
|
|
+ pylupdate = 'pylupdate' + sys.version[0:3]
|
|
if sys.platform == "win32":
|
|
pylupdate = pylupdate + '.exe'
|
|
self.pylupdateProc.addArgument(pylupdate)
|