From 4d0da6f0717d909a88b4cfa2340b2ef3b4a94610 Mon Sep 17 00:00:00 2001 From: Anthony Lim <anthony.lim@stfc.ac.uk> Date: Thu, 18 May 2017 16:53:55 +0100 Subject: [PATCH] refs #19149 review comments --- MantidQt/CustomInterfaces/src/Muon/MuonAnalysis.cpp | 1 - .../MantidQtMantidWidgets/MuonFitPropertyBrowser.h | 11 +++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/MantidQt/CustomInterfaces/src/Muon/MuonAnalysis.cpp b/MantidQt/CustomInterfaces/src/Muon/MuonAnalysis.cpp index ab1341dd544..a3a8758ae40 100644 --- a/MantidQt/CustomInterfaces/src/Muon/MuonAnalysis.cpp +++ b/MantidQt/CustomInterfaces/src/Muon/MuonAnalysis.cpp @@ -318,7 +318,6 @@ void MuonAnalysis::initLayout() { // Manage User Directories connect(m_uiForm.manageDirectoriesBtn, SIGNAL(clicked()), this, SLOT(openDirectoryDialog())); - // m_uiForm. connect(this, SIGNAL(setChosenGroupSignal(QString &)), this, SLOT(setChosenGroupSlot(QString &))); connect(this, SIGNAL(setChosenPeriodSignal(QString &)), this, diff --git a/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitPropertyBrowser.h b/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitPropertyBrowser.h index 550afdf17a5..341e858c6e8 100644 --- a/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitPropertyBrowser.h +++ b/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MuonFitPropertyBrowser.h @@ -189,23 +189,22 @@ private: /// Label to use for simultaneous fits std::string m_simultaneousLabel; QtProperty *m_normalization; - mutable QStringList m_normalizationValue; + QStringList m_normalizationValue; QtBrowserItem *m_multiFitSettingsGroup; QtProperty *m_groupsToFit; - mutable QStringList m_groupsToFitOptions; + QStringList m_groupsToFitOptions; /// Map of group names to checkboxes QMap<QString, QtProperty *> m_groupBoxes; - // QtTreePropertyBrowser *m_groupBrowser; QtProperty *m_showGroup; - mutable QStringList m_showGroupValue; + QStringList m_showGroupValue; QtProperty *m_periodsToFit; - mutable QStringList m_periodsToFitOptions; + QStringList m_periodsToFitOptions; /// Map of group names to checkboxes QMap<QString, QtProperty *> m_periodBoxes; QtProperty *m_showPeriods; - mutable QStringList m_showPeriodValue; + QStringList m_showPeriodValue; QLineEdit *m_positiveCombo; QLineEdit *m_negativeCombo; -- GitLab