Skip to content

Commit

Permalink
Re #6267. I'd better not change the default LogBoundary value.
Browse files Browse the repository at this point in the history
The fact that it broke the unit tests is probably a signal that it
should stay at 'Centre'.
  • Loading branch information
RussellTaylor committed Dec 4, 2012
1 parent b8918ff commit d35e4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Algorithms/src/FilterByLogValue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void FilterByLogValue::init()
std::vector<std::string> types(2);
types[0] = "Centre";
types[1] = "Left";
declareProperty("LogBoundary", types[1], boost::make_shared<StringListValidator>(types),
declareProperty("LogBoundary", types[0], boost::make_shared<StringListValidator>(types),
"How to treat log values as being measured in the centre of the time, or beginning (left) boundary");


Expand Down

0 comments on commit d35e4f7

Please sign in to comment.