From: Shaun Reich Date: Wed, 11 Mar 2009 22:41:57 +0000 (+0000) Subject: No need to set the accelerator manually, it's done automatically anyways(or it will... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/fb362b97a7184df04a5409c75c0c5332262f356c No need to set the accelerator manually, it's done automatically anyways(or it will be). svn path=/trunk/KDE/kdebase/apps/; revision=938478 --- diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index df8b4ba54..0151d48b1 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1113,13 +1113,13 @@ void DolphinMainWindow::setupActions() backShortcut.setAlternate(Qt::Key_Backspace); backAction->setShortcut(backShortcut); - m_recentTabsMenu = new KActionMenu(i18n("&Recently Closed Tabs"), this); + m_recentTabsMenu = new KActionMenu(i18n("Recently Closed Tabs"), this); m_recentTabsMenu->setIcon(KIcon("edit-undo")); actionCollection()->addAction("closed_tabs", m_recentTabsMenu); connect(m_recentTabsMenu->menu(), SIGNAL(triggered(QAction *)), this, SLOT(restoreClosedTab(QAction *))); - QAction* action = new QAction("&Empty Recently Closed Tabs", m_recentTabsMenu); + QAction* action = new QAction("Empty Recently Closed Tabs", m_recentTabsMenu); action->setIcon(KIcon("edit-clear-list")); action->setData(QVariant::fromValue(true)); m_recentTabsMenu->addAction(action);