diff --git a/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/ChopEventFilters.h b/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/ChopEventFilters.h index 0cd717c02bb1..7b15a5441117 100644 --- a/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/ChopEventFilters.h +++ b/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/ChopEventFilters.h @@ -47,7 +47,8 @@ namespace Algorithms private: /// Sets documentation strings for this algorithm - virtual void initDocs(); + virtual const std::string summary() const { return ("Chop the event filters for a specified workspace group to even time slots " + "and output one slot to a new workspace. "); } /// Initialise the properties void init(); /// Run the algorithm diff --git a/Code/Mantid/Framework/Algorithms/src/ChopEventFilters.cpp b/Code/Mantid/Framework/Algorithms/src/ChopEventFilters.cpp index 5cd1e39dff57..fded5431d5f2 100644 --- a/Code/Mantid/Framework/Algorithms/src/ChopEventFilters.cpp +++ b/Code/Mantid/Framework/Algorithms/src/ChopEventFilters.cpp @@ -52,14 +52,6 @@ namespace Algorithms { } - /** Wiki documentation - */ - void ChopEventFilters::initDocs() - { - setWikiSummary("Chop the event filters for a specified workspace group to even time slots " - "and output one slot to a new workspace. "); - } - /** Declare properties */ void ChopEventFilters::init()