Skip to content

Commit

Permalink
Refs #8560. fixed saving issue
Browse files Browse the repository at this point in the history
The save action haddn't been defined right. I'd forgotten to add self.
  • Loading branch information
keithnbrown committed Jan 21, 2014
1 parent 82a0fff commit 52dbad4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Code/Mantid/scripts/Interface/ui/reflectometer/refl_gui.py
Expand Up @@ -28,7 +28,6 @@ class ReflGui(refl_window.Ui_windowRefl):
def __del__(self):
if self.windowRefl.modFlag:
self.save(true)

def on_buttonAuto_clicked(self):
self.autoFill()
def on_buttonTransfer_clicked(self):
Expand All @@ -51,7 +50,7 @@ def on_actionOpen_Table_triggered(self):
def on_actionReload_from_Disk_triggered(self):
self.reloadTable()
def on_actionSave_triggered(self):
save()
self.save()
def on_actionSave_As_triggered(self):
self.saveAs()
def on_actionSave_Workspaces_triggered(self):
Expand Down

0 comments on commit 52dbad4

Please sign in to comment.