Skip to content

Commit

Permalink
Refs #10238 Remove unneeded virtual keywords
Browse files Browse the repository at this point in the history
These won't be inherted. They don't need to be virtual.
  • Loading branch information
Harry Jeffery committed Nov 24, 2014
1 parent c456cea commit 128ec77
Showing 1 changed file with 19 additions and 19 deletions.
Expand Up @@ -71,7 +71,7 @@ namespace MantidQt
boost::shared_ptr<ReflTransferStrategy> m_transferStrategy;

//process selected rows
virtual void process();
void process();
//Reduce a row
void reduceRow(int rowNo);
//prepare a run or list of runs for processing
Expand All @@ -95,34 +95,34 @@ namespace MantidQt
//Stitch some rows
void stitchRows(std::set<int> rows);
//insert a row in the model before the given index
virtual void insertRow(int index);
void insertRow(int index);
//add row(s) to the model
virtual void appendRow();
virtual void prependRow();
void appendRow();
void prependRow();
//delete row(s) from the model
virtual void deleteRow();
void deleteRow();
//clear selected row(s) in the model
virtual void clearSelected();
void clearSelected();
//copy selected rows to clipboard
virtual void copySelected();
void copySelected();
//copy selected rows to clipboard and then delete them
virtual void cutSelected();
void cutSelected();
//paste clipboard into selected rows
virtual void pasteSelected();
void pasteSelected();
//group selected rows together
virtual void groupRows();
void groupRows();
//expand selection to group
virtual void expandSelection();
void expandSelection();
//table io methods
virtual void newTable();
virtual void openTable();
virtual void saveTable();
virtual void saveTableAs();
virtual void importTable();
virtual void exportTable();
void newTable();
void openTable();
void saveTable();
void saveTableAs();
void importTable();
void exportTable();
//searching
virtual void search();
virtual void transfer();
void search();
void transfer();
//options
void showOptionsDialog();
void initOptions();
Expand Down

0 comments on commit 128ec77

Please sign in to comment.