Skip to content

Commit

Permalink
C++11 syntax fixes for CurveFitting. refs #6592
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartcampbell committed Feb 19, 2013
1 parent 4ea0917 commit f886d4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/Framework/CurveFitting/src/PlotPeakByLogValue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ namespace Mantid
*/
void PlotPeakByLogValue::init()
{
declareProperty("Input","",boost::make_shared<MandatoryValidator<std::string>>(),
declareProperty("Input","",boost::make_shared<MandatoryValidator<std::string> >(),
"List of input strings separated by ';'. Each string has a format: "
"file | workspace[,sp<spectrum>|i<ws index>|v<from>:<to>[,<period>]]. "
"'|' means 'or', [] means optional, <...> means a number");
Expand All @@ -82,7 +82,7 @@ namespace Mantid
declareProperty("WorkspaceIndex", 0, "The index of a spectrum to be fitted in"
" each workspace of the input list");
declareProperty(new WorkspaceProperty<ITableWorkspace>("OutputWorkspace","",Direction::Output));
declareProperty("Function","",boost::make_shared<MandatoryValidator<std::string>>(),
declareProperty("Function","",boost::make_shared<MandatoryValidator<std::string> >(),
"The fitting function, common for all workspaces");
declareProperty("LogValue","","Name of the log value to plot the parameters against. "
"If empty the axis1 values are used. If \"SourceName\" the name of the workspace or file is used.");
Expand Down

0 comments on commit f886d4d

Please sign in to comment.