diff options
Diffstat (limited to 'src/app/bookmarkviewcontroller.cpp')
-rw-r--r-- | src/app/bookmarkviewcontroller.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/bookmarkviewcontroller.cpp b/src/app/bookmarkviewcontroller.cpp index f6e4b32..33aad1b 100644 --- a/src/app/bookmarkviewcontroller.cpp +++ b/src/app/bookmarkviewcontroller.cpp @@ -209,7 +209,7 @@ BookmarkViewController::BookmarkViewController(TQWidget* parent) action=new TDEAction(i18n("Add a bookmark (keep it short)", "Add"), "bookmark_add", 0, this, TQT_SLOT(bookmarkCurrentURL()), d->mActionCollection); action->plug(toolbar); - action=new TDEAction(i18n("Remove a bookmark (keep it short)", "Remove"), "editdelete", 0, + action=new TDEAction(i18n("Remove a bookmark (keep it short)", "Remove"), "edit-delete", 0, this, TQT_SLOT(deleteCurrentBookmark()), d->mActionCollection); action->plug(toolbar); } @@ -302,7 +302,7 @@ void BookmarkViewController::slotContextMenu(TQListViewItem* item_) { menu.insertSeparator(); menu.insertItem(SmallIcon("edit"), i18n("Edit..."), this, TQT_SLOT(editCurrentBookmark())); - menu.insertItem(SmallIcon("editdelete"), i18n("Delete"), + menu.insertItem(SmallIcon("edit-delete"), i18n("Delete"), this, TQT_SLOT(deleteCurrentBookmark())); } menu.exec(TQCursor::pos()); @@ -402,7 +402,7 @@ void BookmarkViewController::deleteCurrentBookmark() { int response=KMessageBox::warningContinueCancel(d->mListView, "<qt>" + msg + "</qt>", title, - KGuiItem(title, "editdelete") + KGuiItem(title, "edit-delete") ); if (response==KMessageBox::Cancel) return; |