Skip to content

Commit 86dd3e9

Browse files
committed
Changed Algorithmic Debugging to Debugging.
1 parent 56794bf commit 86dd3e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

OMEdit/OMEditGUI/MainWindow.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,10 @@ MainWindow::MainWindow(QSplashScreen *pSplashScreen, bool debug, QWidget *parent
152152
connect(pPlottingShortcut, SIGNAL(activated()), SLOT(switchToPlottingPerspectiveSlot()));
153153
mpPerspectiveTabbar->setTabToolTip(2, tr("Changes to plotting perspective (%1)").arg(pPlottingShortcut->key().toString()));
154154
// algorithmic debugging perspective
155-
mpPerspectiveTabbar->addTab(QIcon(":/Resources/icons/debugger.svg"), tr("Algorithmic Debugging"));
155+
mpPerspectiveTabbar->addTab(QIcon(":/Resources/icons/debugger.svg"), tr("Debugging"));
156156
QShortcut *pAlgorithmicDebuggingShortcut = new QShortcut(QKeySequence("Ctrl+f5"), this);
157157
connect(pAlgorithmicDebuggingShortcut, SIGNAL(activated()), SLOT(switchToAlgorithmicDebuggingPerspectiveSlot()));
158-
mpPerspectiveTabbar->setTabToolTip(3, tr("Changes to algorithmic debugging perspective (%1)").arg(pAlgorithmicDebuggingShortcut->key().toString()));
158+
mpPerspectiveTabbar->setTabToolTip(3, tr("Changes to debugging perspective (%1)").arg(pAlgorithmicDebuggingShortcut->key().toString()));
159159
// change the perspective when perspective tab bar selection is changed
160160
connect(mpPerspectiveTabbar, SIGNAL(currentChanged(int)), SLOT(perspectiveTabChanged(int)));
161161
// Create an object of QStatusBar

0 commit comments

Comments
 (0)