Skip to content
Snippets Groups Projects
Commit fb71de0c authored by Pranav Bahuguna's avatar Pranav Bahuguna
Browse files

Re #17816 Added remaining suggestions

parent a4d167a7
No related branches found
No related tags found
No related merge requests found
...@@ -69,9 +69,9 @@ private: ...@@ -69,9 +69,9 @@ private:
/// The main presenter /// The main presenter
IReflMainWindowPresenter *m_mainPresenter; IReflMainWindowPresenter *m_mainPresenter;
/// Names of possible save algorithms /// Names of possible save algorithms
std::vector<std::string> saveAlgs; std::vector<std::string> m_saveAlgs;
/// Extensions used for each save algorithm /// Extensions used for each save algorithm
std::vector<std::string> saveExts; std::vector<std::string> m_saveExts;
}; };
} }
} }
......
...@@ -23,9 +23,9 @@ using namespace Mantid::API; ...@@ -23,9 +23,9 @@ using namespace Mantid::API;
ReflSaveTabPresenter::ReflSaveTabPresenter(IReflSaveTabView *view) ReflSaveTabPresenter::ReflSaveTabPresenter(IReflSaveTabView *view)
: m_view(view), m_mainPresenter() { : m_view(view), m_mainPresenter() {
saveAlgs = {"SaveReflCustomAscii", "SaveReflThreeColumnAscii", m_saveAlgs = {"SaveReflCustomAscii", "SaveReflThreeColumnAscii",
"SaveANSTOAscii", "SaveILLCosmosAscii"}; "SaveANSTOAscii", "SaveILLCosmosAscii"};
saveExts = {".dat", ".dat", ".txt", ".mft"}; m_saveExts = {".dat", ".dat", ".txt", ".mft"};
} }
/** Destructor /** Destructor
...@@ -156,8 +156,8 @@ void ReflSaveTabPresenter::saveWorkspaces() { ...@@ -156,8 +156,8 @@ void ReflSaveTabPresenter::saveWorkspaces() {
std::string separator = m_view->getSeparator(); std::string separator = m_view->getSeparator();
std::string prefix = m_view->getPrefix(); std::string prefix = m_view->getPrefix();
int formatIndex = m_view->getFileFormatIndex(); int formatIndex = m_view->getFileFormatIndex();
std::string algName = saveAlgs[formatIndex]; std::string algName = m_saveAlgs[formatIndex];
std::string extension = saveExts[formatIndex]; std::string extension = m_saveExts[formatIndex];
IAlgorithm_sptr saveAlg = AlgorithmManager::Instance().create(algName); IAlgorithm_sptr saveAlg = AlgorithmManager::Instance().create(algName);
for (int i = 0; i < wsNames.size(); i++) { for (int i = 0; i < wsNames.size(); i++) {
......
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