Skip to content

Commit

Permalink
refs #9778 missing changes lost extracting code changes from #9769
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Jun 29, 2014
1 parent 599c6f7 commit ae906b5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Code/Mantid/Framework/Algorithms/src/NormaliseToMonitor.cpp
Expand Up @@ -224,7 +224,9 @@ void NormaliseToMonitor::exec()
MatrixWorkspace_sptr outputWS = getProperty("OutputWorkspace");
// First check the inputs, throws std::runtime_error if a property is invalid
this->checkProperties(inputWS);
this->m_norm_ws_name=getProperty("NormalizationFactorWSName");
// unix has problem with property casting otherwise
std::string tmp = getProperty("NormalizationFactorWSName");
this->m_norm_ws_name=tmp;

// See if the normalization with integration properties are set,
// throws std::runtime_error if a property is invalid
Expand Down

0 comments on commit ae906b5

Please sign in to comment.