From: James Richard Tyrer Date: Sun, 18 May 2008 15:31:24 +0000 (+0000) Subject: Adding icon name "tab-close-other" to replace "tab-close" where the action is to... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/8a891082f498580a4e460d6a8a85fab0c99d30fe Adding icon name "tab-close-other" to replace "tab-close" where the action is to close other tabs. svn path=/trunk/KDE/kdebase/apps/; revision=809235 --- diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 51cb22e9d..21ef3a984 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -737,7 +737,7 @@ void DolphinMainWindow::openTabContextMenu(int index, const QPoint& pos) QAction* newTabAction = menu.addAction(KIcon("tab-new"), i18nc("@action:inmenu", "New Tab")); newTabAction->setShortcut(actionCollection()->action("new_tab")->shortcut()); - QAction* closeOtherTabsAction = menu.addAction(KIcon("tab-close"), i18nc("@action:inmenu", "Close Other Tabs")); + QAction* closeOtherTabsAction = menu.addAction(KIcon("tab-close-other"), i18nc("@action:inmenu", "Close Other Tabs")); QAction* closeTabAction = menu.addAction(KIcon("tab-close"), i18nc("@action:inmenu", "Close Tab")); closeTabAction->setShortcut(actionCollection()->action("close_tab")->shortcut());