--- a/ProjectController.py Tue Mar 02 09:25:55 2021 +0100
+++ b/ProjectController.py Tue Mar 02 09:28:44 2021 +0100
@@ -99,11 +99,12 @@
class Iec2CSettings(object):
+ def __init__(self, controler): self.iec2c_buildopts = None
self.ieclib_path = self.findLibPath()
self.ieclib_c_path = self.findLibCPath()
+ self.controler = controler def findObject(self, paths, test):
@@ -155,11 +156,11 @@
# Output files are listed to stdout, errors to stderr
- _status, result, _err_result = ProcessLogger(None, buildcmd,
+ _status, result, _err_result = ProcessLogger(self.controler.logger, buildcmd, - self.logger.write_error(_("Couldn't launch IEC compiler to determine compatible options.\n"))
+ self.controler.logger.write_error(_("Couldn't launch IEC compiler to determine compatible options.\n")) @@ -242,7 +243,7 @@
ConfigTreeNode.__init__(self)
if ProjectController.iec2c_cfg is None:
- ProjectController.iec2c_cfg = Iec2CSettings()
+ ProjectController.iec2c_cfg = Iec2CSettings(self) self.MandatoryParams = None