src/eric7/Project/Project.py

branch
eric7
changeset 9515
275334bc9607
parent 9514
2b104ad132a4
child 9516
0f023e61a9b5
equal deleted inserted replaced
9514:2b104ad132a4 9515:275334bc9607
605 @type str (optional) 605 @type str (optional)
606 """ 606 """
607 if dataKey is None: 607 if dataKey is None:
608 self.__pdata.update(data) 608 self.__pdata.update(data)
609 else: 609 else:
610 if self.__pdata[dataKey] == data:
611 self.setDirty(True)
610 self.__pdata[dataKey] = data 612 self.__pdata[dataKey] = data
611 self.setDirty(True)
612 613
613 def getData(self, category, key): 614 def getData(self, category, key):
614 """ 615 """
615 Public method to get data out of the project data store. 616 Public method to get data out of the project data store.
616 617

eric ide

mercurial