diff options
| author | Shaun Reich <[email protected]> | 2009-03-11 22:41:57 +0000 |
|---|---|---|
| committer | Shaun Reich <[email protected]> | 2009-03-11 22:41:57 +0000 |
| commit | fb362b97a7184df04a5409c75c0c5332262f356c (patch) | |
| tree | 1161e5bcc717dfbadebe7634314efe8327321622 | |
| parent | 7a22141c55b5344715325156fa3257dafbe0d916 (diff) | |
No need to set the accelerator manually, it's done automatically anyways(or it will be).
svn path=/trunk/KDE/kdebase/apps/; revision=938478
| -rw-r--r-- | src/dolphinmainwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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); |
