diff options
| author | Peter Penz <[email protected]> | 2007-03-10 19:41:49 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-03-10 19:41:49 +0000 |
| commit | bfcf764b69b9375b1b458d0a0c8ee95f3cb650ac (patch) | |
| tree | cef29ee72be946234010f1181e714c4455d46d32 /src/dolphincontextmenu.cpp | |
| parent | d088d8dc322a824ff789492b148d8a1f6ee92f5d (diff) | |
Fixed icon-names so that they match to the new Oxygen naming scheme (erase all Dolphin config files to see the effect). Although Oxygen is not finished yet, it looks very beautiful already, kudos to the Oxygen team :-)
svn path=/trunk/KDE/kdebase/apps/; revision=641285
Diffstat (limited to 'src/dolphincontextmenu.cpp')
| -rw-r--r-- | src/dolphincontextmenu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dolphincontextmenu.cpp b/src/dolphincontextmenu.cpp index 346ee6401..147606581 100644 --- a/src/dolphincontextmenu.cpp +++ b/src/dolphincontextmenu.cpp @@ -97,7 +97,7 @@ void DolphinContextMenu::openViewportContextMenu() popup->addMenu(viewModeMenu); popup->addSeparator(); - QAction* bookmarkAction = popup->addAction(i18n("Bookmark this folder")); + QAction* bookmarkAction = popup->addAction(KIcon("bookmark-folder"), i18n("Bookmark this folder")); popup->addSeparator(); QAction* propertiesAction = popup->addAction(i18n("Properties...")); @@ -174,7 +174,7 @@ void DolphinContextMenu::openItemContextMenu() // urls contains only one item, i.e. no multiple selection made QAction* bookmarkAction = 0; if (m_fileInfo->isDir() && (urls.count() == 1)) { - bookmarkAction = popup->addAction(i18n("Bookmark this folder")); + bookmarkAction = popup->addAction(KIcon("bookmark-folder"), i18n("Bookmark this folder")); } // Insert 'Open With...' sub menu |
