Changeset 3361
- Timestamp:
- 05/14/08 23:22:30 (2 months ago)
- Location:
- trunk/opus_gui/config
- Files:
-
- 3 modified
-
modelmanager/opusxmlaction_model.py (modified) (1 diff)
-
scenariomanager/opusxmlaction_scenario.py (modified) (2 diffs)
-
xmltree/opusxmltree.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/opus_gui/config/modelmanager/opusxmlaction_model.py
r3353 r3361 68 68 # First confirm that the project file needs to be saved 69 69 # before running the estimation... 70 if not self.xmlTreeObject.model. dirty:70 if not self.xmlTreeObject.model.isDirty(): 71 71 newEstimation = OpusEstimation(self.xmlTreeObject, 72 72 self.xmlTreeObject.parentTool.xml_file) -
trunk/opus_gui/config/scenariomanager/opusxmlaction_scenario.py
r3356 r3361 96 96 def runModel(self): 97 97 # If the XML is not dirty we can go ahead and run... else prompt for saving 98 if not self.xmlTreeObject.model. dirty:98 if not self.xmlTreeObject.model.isDirty(): 99 99 modelToRun = self.currentIndex.internalPointer().node().nodeName() 100 100 # Add the model to the run Q … … 204 204 205 205 def removeTree(self): 206 if not self.xmlTreeObject.model. dirty:206 if not self.xmlTreeObject.model.isDirty(): 207 207 self.xmlTreeObject.groupBox.hide() 208 208 self.xmlTreeObject.parentWidget.removeWidget(self.xmlTreeObject.groupBox) -
trunk/opus_gui/config/xmltree/opusxmltree.py
r3054 r3361 57 57 58 58 def removeTree(self): 59 if not self.model. dirty:59 if not self.model.isDirty(): 60 60 self.groupBox.hide() 61 61 self.parentWidget.removeWidget(self.groupBox)
