diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 15:43:42 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 15:43:42 -0500 |
commit | b420248927dde2eaea8cccd4b69df7a2b344416f (patch) | |
tree | b87b7d647cd5a90d9a27c2adab8ee078371dcbff /src/bookmarkssidebarpage.cpp | |
parent | eaf7f46156c328ec2919f365de70b19564ac6a26 (diff) | |
download | dolphin-b420248927dde2eaea8cccd4b69df7a2b344416f.tar.gz dolphin-b420248927dde2eaea8cccd4b69df7a2b344416f.zip |
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'src/bookmarkssidebarpage.cpp')
-rw-r--r-- | src/bookmarkssidebarpage.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bookmarkssidebarpage.cpp b/src/bookmarkssidebarpage.cpp index e70e8af..94a37eb 100644 --- a/src/bookmarkssidebarpage.cpp +++ b/src/bookmarkssidebarpage.cpp @@ -102,12 +102,12 @@ void BookmarksSidebarPage::slotContextMenuRequested(TQListBoxItem* item, TQPopupMenu* popup = new TQPopupMenu(); if (item == 0) { - popup->insertItem(SmallIcon("filenew"), i18n("Add Bookmark..."), addID); + popup->insertItem(SmallIcon("document-new"), i18n("Add Bookmark..."), addID); } else { - popup->insertItem(SmallIcon("filenew"), i18n("Insert Bookmark..."), insertID); + popup->insertItem(SmallIcon("document-new"), i18n("Insert Bookmark..."), insertID); popup->insertItem(SmallIcon("edit"), i18n("Edit..."), editID); - popup->insertItem(SmallIcon("editdelete"), i18n("Delete"), deleteID); + popup->insertItem(SmallIcon("edit-delete"), i18n("Delete"), deleteID); } KBookmarkManager* manager = DolphinSettings::instance().bookmarkManager(); |