Skip to content
Snippets Groups Projects
Commit edfe948d authored by Steve Williams's avatar Steve Williams
Browse files

Attempt to fix the Mantidplot failure on Darwin by simplifying the code in the...

Attempt to fix the Mantidplot failure on Darwin by simplifying the code in the region of the error re #1263
parent f95241f9
No related branches found
No related tags found
No related merge requests found
...@@ -47,9 +47,8 @@ namespace MantidQt ...@@ -47,9 +47,8 @@ namespace MantidQt
Q_OBJECT Q_OBJECT
public: public:
SaveWorkspaces(QWidget *parent, const QString & suggFname = "", SaveWorkspaces(QWidget *parent, const QString & suggFname,
const QHash<const QCheckBox * const, QString> & defSavs = QHash<const QCheckBox * const, QString> & defSavs);
QHash<const QCheckBox * const, QString>());
void initLayout(); void initLayout();
///Returns the save extension expected the name algorithm ///Returns the save extension expected the name algorithm
static QString getSaveAlgExt(const QString & algName); static QString getSaveAlgExt(const QString & algName);
......
...@@ -32,7 +32,7 @@ using namespace Mantid::API; ...@@ -32,7 +32,7 @@ using namespace Mantid::API;
* @param suggFname sets the initial entry in the filename box * @param suggFname sets the initial entry in the filename box
* @param defSavs sets which boxes are ticked * @param defSavs sets which boxes are ticked
*/ */
SaveWorkspaces::SaveWorkspaces(QWidget *parent, const QString & suggFname, const QHash<const QCheckBox * const, QString> & defSavs) : SaveWorkspaces::SaveWorkspaces(QWidget *parent, const QString & suggFname, QHash<const QCheckBox * const, QString> & defSavs) :
API::MantidQtDialog(parent) API::MantidQtDialog(parent)
{ {
setWindowTitle("Save Workspaces"); setWindowTitle("Save Workspaces");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment