Skip to content
Snippets Groups Projects
Commit a975e38f authored by Samuel Jackson's avatar Samuel Jackson
Browse files

Refs #9404 Swap to using new wiki summary method.

parent 609e9e20
No related branches found
No related tags found
No related merge requests found
...@@ -40,11 +40,11 @@ namespace Algorithms ...@@ -40,11 +40,11 @@ namespace Algorithms
virtual ~RemoveWorkspaceHistory(); virtual ~RemoveWorkspaceHistory();
virtual const std::string name() const; virtual const std::string name() const;
virtual const std::string summary() const;
virtual int version() const; virtual int version() const;
virtual const std::string category() const; virtual const std::string category() const;
private: private:
virtual void initDocs();
void init(); void init();
void exec(); void exec();
......
...@@ -44,13 +44,8 @@ namespace Algorithms ...@@ -44,13 +44,8 @@ namespace Algorithms
/// Algorithm's category for identification. @see Algorithm::category /// Algorithm's category for identification. @see Algorithm::category
const std::string RemoveWorkspaceHistory::category() const { return "Utility";} const std::string RemoveWorkspaceHistory::category() const { return "Utility";}
//---------------------------------------------------------------------------------------------- /// Algorithm's summary for identification. @see Algorithm::summary
/// Sets documentation strings for this algorithm const std::string RemoveWorkspaceHistory::summary() const { "Removes all algorithm history records from a given workspace."; };
void RemoveWorkspaceHistory::initDocs()
{
this->setWikiSummary("Removes all algorithm history records from a given workspace.");
this->setOptionalMessage("Removes all algorithm history records from a given workspace.");
}
//---------------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------------
/** Initialize the algorithm's properties. /** Initialize the algorithm's properties.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment