ProjectController.py
changeset 2619 b1ebe2803285
parent 2602 19dc6b830e7d
child 2620 063391cd313d
equal deleted inserted replaced
2618:4eca95f91cba 2619:b1ebe2803285
   945             try:
   945             try:
   946                 csvfile = os.path.join(self._getBuildPath(), "VARIABLES.csv")
   946                 csvfile = os.path.join(self._getBuildPath(), "VARIABLES.csv")
   947                 # describes CSV columns
   947                 # describes CSV columns
   948                 ProgramsListAttributeName = ["num", "C_path", "type"]
   948                 ProgramsListAttributeName = ["num", "C_path", "type"]
   949                 VariablesListAttributeName = [
   949                 VariablesListAttributeName = [
   950                     "num", "vartype", "IEC_path", "C_path", "type"]
   950                     "num", "vartype", "IEC_path", "C_path", "type", "derived"]
   951                 self._ProgramList = []
   951                 self._ProgramList = []
   952                 self._VariablesList = []
   952                 self._VariablesList = []
   953                 self._DbgVariablesList = []
   953                 self._DbgVariablesList = []
   954                 self._IECPathToIdx = {}
   954                 self._IECPathToIdx = {}
   955 
   955