summaryrefslogtreecommitdiffstats
path: root/src/controller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/controller.cpp')
-rw-r--r--src/controller.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controller.cpp b/src/controller.cpp
index d4a1599..904b124 100644
--- a/src/controller.cpp
+++ b/src/controller.cpp
@@ -432,7 +432,7 @@ void Controller::slotDeleteSelectedEntries() {
TQString str = i18n("Do you really want to delete this entry?");
TQString dontAsk = TQString::fromLatin1("DeleteEntry");
int ret = KMessageBox::warningContinueCancel(Kernel::self()->widget(), str, i18n("Delete Entry"),
- KGuiItem(i18n("&Delete"), TQString::fromLatin1("editdelete")), dontAsk);
+ KGuiItem(i18n("&Delete"), TQString::fromLatin1("edit-delete")), dontAsk);
if(ret != KMessageBox::Continue) {
m_working = false;
return;
@@ -447,7 +447,7 @@ void Controller::slotDeleteSelectedEntries() {
TQString dontAsk = TQString::fromLatin1("DeleteMultipleBooks");
int ret = KMessageBox::warningContinueCancelList(Kernel::self()->widget(), str, names,
i18n("Delete Multiple Entries"),
- KGuiItem(i18n("&Delete"), TQString::fromLatin1("editdelete")), dontAsk);
+ KGuiItem(i18n("&Delete"), TQString::fromLatin1("edit-delete")), dontAsk);
if(ret != KMessageBox::Continue) {
m_working = false;
return;