]> cloud.milkyroute.net Git - dolphin.git/commitdiff
No need to set the accelerator manually, it's done automatically anyways(or it will...
authorShaun Reich <shaun.reich@kdemail.net>
Wed, 11 Mar 2009 22:41:57 +0000 (22:41 +0000)
committerShaun Reich <shaun.reich@kdemail.net>
Wed, 11 Mar 2009 22:41:57 +0000 (22:41 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=938478

src/dolphinmainwindow.cpp

index df8b4ba54b04f075a3350d96fda1ca97aa365a4e..0151d48b17a273468edbb4e3812d1f63f524361b 100644 (file)
@@ -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);