diff --git a/Code/Mantid/Build/class_maker.py b/Code/Mantid/Build/class_maker.py index 9046e1a52af6..13f1e134a911 100755 --- a/Code/Mantid/Build/class_maker.py +++ b/Code/Mantid/Build/class_maker.py @@ -135,10 +135,14 @@ def write_source(subproject, classname, filename, args): int %s::version() const { return 1; }; /// Algorithm's category for identification. @see Algorithm::category -const std::string %s::category() const { return TODO: FILL IN A CATEGORY;} +const std::string %s::category() const { + return "TODO: FILL IN A CATEGORY"; +} /// Algorithm's summary for use in the GUI and help. @see Algorithm::summary -const std::string %s::summary() const { return TODO: FILL IN A SUMMARY;}; +const std::string %s::summary() const { + return "TODO: FILL IN A SUMMARY"; +}; //---------------------------------------------------------------------------------------------- /** Initialize the algorithm's properties.