summaryrefslogtreecommitdiffstats
path: root/src/controller.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:51 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:51 -0500
commitd5e5197316509015cd3754ba2503ede96af751c4 (patch)
treec0b287aecb5b56016121dcfd8ae843e52a9dde17 /src/controller.cpp
parentfbdff8abf704f998381daa44e0515eac04531f21 (diff)
downloadtellico-d5e5197316509015cd3754ba2503ede96af751c4.tar.gz
tellico-d5e5197316509015cd3754ba2503ede96af751c4.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/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;