# HG changeset patch # User matthiasm # Date 1405444537 -3600 # Node ID 3c8dccd0cafeb912e56790ea3895444e84f9f6c9 # Parent 6439ca6e7de191f76d223414f72dc940b46cd145 removed unhelpful help item from help menu diff -r 6439ca6e7de1 -r 3c8dccd0cafe src/MainWindow.cpp --- a/src/MainWindow.cpp Tue Jul 15 18:12:48 2014 +0100 +++ b/src/MainWindow.cpp Tue Jul 15 18:15:37 2014 +0100 @@ -930,14 +930,15 @@ IconLoader il; QString name = QApplication::applicationName(); - - QAction *action = new QAction(il.load("help"), - tr("&Help Reference"), this); - action->setShortcut(tr("F1")); - action->setStatusTip(tr("Open the %1 reference manual").arg(name)); - connect(action, SIGNAL(triggered()), this, SLOT(help())); - m_keyReference->registerShortcut(action); - menu->addAction(action); + QAction *action; + + // action = new QAction(il.load("help"), + // tr("&Help Reference"), this); + // action->setShortcut(tr("F1")); + // action->setStatusTip(tr("Open the %1 reference manual").arg(name)); + // connect(action, SIGNAL(triggered()), this, SLOT(help())); + // m_keyReference->registerShortcut(action); + // menu->addAction(action); action = new QAction(tr("&Key and Mouse Reference"), this); action->setShortcut(tr("F2"));