Skip to content

Commit

Permalink
Refs #9170 fixed a typo and added a rethrow
Browse files Browse the repository at this point in the history
An except wan't rethrowing when it should have, so i made it rethrow

there was a typo on one of the renamed methods
  • Loading branch information
keithnbrown committed Mar 12, 2014
1 parent 6ec8c8e commit 0faba51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Code/Mantid/scripts/Interface/ui/reflectometer/refl_gui.py
Expand Up @@ -441,6 +441,7 @@ def _process(self):
self.statusMain.clearMessage()
except:
self.statusMain.clearMessage()
raise

def _plot(self, plotbutton):
if not isinstance(plotbutton, QtGui.QPushButton):
Expand Down Expand Up @@ -597,7 +598,7 @@ def _save(self, failsave = False):
return False
return self._save_table_contents(filename)

def _saveAs(self):
def _save_as(self):
saveDialog = QtGui.QFileDialog(self.widgetMainRow.parent(), "Save Table")
saveDialog.setFileMode(QtGui.QFileDialog.AnyFile)
saveDialog.setNameFilter("Table Files (*.tbl);;All files (*.*)")
Expand Down

0 comments on commit 0faba51

Please sign in to comment.