Skip to content

Commit

Permalink
Fix two spelling erros in the workspace dock right-click menu
Browse files Browse the repository at this point in the history
Refs #8525
  • Loading branch information
martyngigg committed Nov 28, 2013
1 parent fe2296e commit c6db200
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/MantidPlot/src/Mantid/MantidDock.cpp
Expand Up @@ -204,11 +204,11 @@ void MantidDockWidget::createWorkspaceMenuActions()
m_showTransposed = new QAction(tr("Show Transposed"),this);
connect(m_showTransposed,SIGNAL(triggered()),m_mantidUI,SLOT(importTransposed()));

m_convertToMatrixWorkspace = new QAction(tr("Convert to MatrixWorkpace"),this);
m_convertToMatrixWorkspace = new QAction(tr("Convert to MatrixWorkspace"),this);
m_convertToMatrixWorkspace->setIcon(QIcon(getQPixmap("mantid_matrix_xpm")));
connect(m_convertToMatrixWorkspace,SIGNAL(triggered()),this,SLOT(convertToMatrixWorkspace()));

m_convertMDHistoToMatrixWorkspace = new QAction(tr("Convert to MatrixWorkpace"),this);
m_convertMDHistoToMatrixWorkspace = new QAction(tr("Convert to MatrixWorkspace"),this);
m_convertMDHistoToMatrixWorkspace->setIcon(QIcon(getQPixmap("mantid_matrix_xpm")));
connect(m_convertMDHistoToMatrixWorkspace,SIGNAL(triggered()),this,SLOT(convertMDHistoToMatrixWorkspace()));

Expand Down

0 comments on commit c6db200

Please sign in to comment.