diff options
| author | Peter Penz <[email protected]> | 2007-12-10 22:00:48 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-12-10 22:00:48 +0000 |
| commit | 4e43b5465fa54f13273e7a15985a8a2b941ae60e (patch) | |
| tree | 3d49cd898cc10c02aee98b4b4958d84f4a223f63 /src | |
| parent | c9a2f619420ad7284f2f35e91573813a52a22581 (diff) | |
use different icon for "Add to places" as suggested by David Vignoni
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=747049
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphincontextmenu.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dolphincontextmenu.cpp b/src/dolphincontextmenu.cpp index e7f4bceaa..648928e0f 100644 --- a/src/dolphincontextmenu.cpp +++ b/src/dolphincontextmenu.cpp @@ -109,7 +109,7 @@ void DolphinContextMenu::openTrashContextMenu() emptyTrashAction->setEnabled(!trashConfig.group("Status").readEntry("Empty", true)); popup->addAction(emptyTrashAction); - QAction* addToPlacesAction = popup->addAction(KIcon("folder-bookmarks"), + QAction* addToPlacesAction = popup->addAction(KIcon("bookmark-new"), i18nc("@action:inmenu Add current folder to places", "Add to Places")); QAction* propertiesAction = m_mainWindow->actionCollection()->action("properties"); @@ -175,7 +175,7 @@ void DolphinContextMenu::openItemContextMenu() // insert 'Bookmark This Folder' entry if exactly one item is selected QAction* addToPlacesAction = 0; if (m_fileInfo.isDir() && (m_selectedUrls.count() == 1)) { - addToPlacesAction = popup->addAction(KIcon("folder-bookmarks"), + addToPlacesAction = popup->addAction(KIcon("bookmark-new"), i18nc("@action:inmenu Add selected folder to places", "Add to Places")); } @@ -252,7 +252,7 @@ void DolphinContextMenu::openViewportContextMenu() popup->addSeparator(); - QAction* addToPlacesAction = popup->addAction(KIcon("folder-bookmarks"), + QAction* addToPlacesAction = popup->addAction(KIcon("bookmark-new"), i18nc("@action:inmenu Add current folder to places", "Add to Places")); popup->addSeparator(); |
