Skip to content

Commit

Permalink
Renamed Neutron tab on UI
Browse files Browse the repository at this point in the history
Refs #10534
  • Loading branch information
DanNixon committed Nov 11, 2014
1 parent 681b601 commit 8c521ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Expand Up @@ -51,8 +51,7 @@ namespace MantidQt
/// Enumeration for the index of each tab
enum TabChoice
{
NEUTRON,
MOLDYN,
LOAD_ILL,
};

public: // public constructor, destructor and functions
Expand Down
Expand Up @@ -28,7 +28,7 @@
</property>
<widget class="QWidget" name="neutron">
<attribute name="title">
<string>Neutron</string>
<string>Load ILL</string>
</attribute>
</widget>
</widget>
Expand Down
Expand Up @@ -31,7 +31,7 @@ void IndirectLoadAscii::initLayout()
Mantid::Kernel::ConfigService::Instance().addObserver(m_changeObserver);

//insert each tab into the interface on creation
m_loadAsciiTabs.insert(std::make_pair(NEUTRON, new IndirectLoadILL(m_uiForm.IndirectLoadAsciiTabs->widget(NEUTRON))));
m_loadAsciiTabs.insert(std::make_pair(LOAD_ILL, new IndirectLoadILL(m_uiForm.IndirectLoadAsciiTabs->widget(LOAD_ILL))));

//Connect each tab to the actions available in this GUI
std::map<unsigned int, IndirectLoadAsciiTab*>::iterator iter;
Expand Down

0 comments on commit 8c521ec

Please sign in to comment.