Skip to content

Commit

Permalink
Renamed indirect interfaces
Browse files Browse the repository at this point in the history
Removed Indirect prefix from all names

Refs #10141
  • Loading branch information
DanNixon committed Aug 20, 2014
1 parent b2cb770 commit 561df82
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Expand Up @@ -63,7 +63,7 @@ namespace MantidQt
///Destructor
~IndirectBayes();
/// Interface name
static std::string name() { return "Indirect Bayes"; }
static std::string name() { return "Bayes"; }
// This interface's categories.
static QString categoryInfo() { return "Indirect"; }
virtual void initLayout();
Expand Down
Expand Up @@ -54,7 +54,7 @@ namespace IDA

public:
/// The name of the interface as registered into the factory
static std::string name() { return "Indirect Data Analysis"; }
static std::string name() { return "Data Analysis"; }
// This interface's categories.
static QString categoryInfo() { return "Indirect"; }
/// Default Constructor
Expand Down
Expand Up @@ -61,7 +61,7 @@ namespace MantidQt
///Destructor
~IndirectDataReduction();
/// Interface name
static std::string name() { return "Indirect Data Reduction"; }
static std::string name() { return "Data Reduction"; }
// This interface's categories.
static QString categoryInfo() { return "Indirect"; }

Expand Down
Expand Up @@ -17,7 +17,7 @@ class IndirectDiffractionReduction : public MantidQt::API::UserSubWindow

public:
/// The name of the interface as registered into the factory
static std::string name() { return "Indirect Diffraction"; }
static std::string name() { return "Diffraction"; }
// This interface's categories.
static QString categoryInfo() { return "Indirect"; }

Expand Down
Expand Up @@ -61,7 +61,7 @@ namespace MantidQt
///Destructor
~IndirectLoadAscii();
/// Interface name
static std::string name() { return "Indirect Load Ascii"; }
static std::string name() { return "Load Ascii"; }
// This interface's categories.
static QString categoryInfo() { return "Indirect"; }
virtual void initLayout();
Expand Down
Expand Up @@ -60,7 +60,7 @@ namespace MantidQt
///Destructor
~IndirectSimulation();
/// Interface name
static std::string name() { return "Indirect Simulation"; }
static std::string name() { return "Simulation"; }
// This interface's categories.
static QString categoryInfo() { return "Indirect"; }
virtual void initLayout();
Expand Down

0 comments on commit 561df82

Please sign in to comment.