Skip to content
Snippets Groups Projects
Commit 8e8724d1 authored by Owen Arnold's avatar Owen Arnold
Browse files

refs #7444. Add menu option.

parent c3301396
No related branches found
No related tags found
No related merge requests found
......@@ -1223,6 +1223,7 @@ void ApplicationWindow::initMainMenu()
help->addAction(actionmantidplotHelp);
help->insertSeparator();
help->addAction(actionHelpBugReports);
help->addAction(actionAskHelp);
help->insertSeparator();
help->addAction(actionFirstTimeSetup);
help->insertSeparator();
......@@ -13189,6 +13190,9 @@ void ApplicationWindow::createActions()
actionHelpBugReports = new QAction(tr("Report a &Bug"), this);
connect(actionHelpBugReports, SIGNAL(triggered()), this, SLOT(showBugTracker()));
 
actionAskHelp = new QAction(tr("Ask for Help"), this);
connect(actionAskHelp, SIGNAL(triggered()), this, SLOT(showBugTracker()));
//actionDownloadManual = new QAction(tr("Download &Manual"), this); // Mantid change
//connect(actionDownloadManual, SIGNAL(activated()), this, SLOT(downloadManual())); // Mantid change
 
......@@ -13794,6 +13798,7 @@ void ApplicationWindow::translateActionsStrings()
//actionCheckUpdates->setMenuText(tr("Search for &Updates")); //Mantid change - commented out
//actionHelpForums->setText(tr("Visit QtiPlot &Forums"));
actionHelpBugReports->setText(tr("Report a &Bug"));
actionAskHelp->setText(tr("Ask for Help"));
//actionDownloadManual->setMenuText(tr("Download &Manual"));//Mantid change - commented out
//actionTranslations->setMenuText(tr("&Translations"));//Mantid change - commented out
//actionDonate->setMenuText(tr("Make a &Donation"));
......
......@@ -1456,7 +1456,7 @@ private:
QAction *actionSetXCol, *actionSetYCol, *actionSetZCol, *actionSetLabelCol, *actionDisregardCol, *actionSetXErrCol, *actionSetYErrCol;
QAction *actionBoxPlot, *actionMultiPeakGauss, *actionMultiPeakLorentz, *actionCheckUpdates;
QAction *actionDonate, *actionHomePage, *actionDownloadManual, *actionTechnicalSupport, *actionTranslations;
QAction *actionHelpForums, *actionHelpBugReports;
QAction *actionHelpForums, *actionHelpBugReports, *actionAskHelp;
QAction *actionShowPlotDialog, *actionShowScaleDialog, *actionOpenTemplate, *actionSaveTemplate;
QAction *actionNextWindow, *actionPrevWindow;
QAction *actionScriptingLang,*actionClearTable, *actionGoToRow, *actionGoToColumn;
......
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