summaryrefslogtreecommitdiffstats
path: root/src/dolphin.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:42 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 15:43:42 -0500
commitb420248927dde2eaea8cccd4b69df7a2b344416f (patch)
treeb87b7d647cd5a90d9a27c2adab8ee078371dcbff /src/dolphin.cpp
parenteaf7f46156c328ec2919f365de70b19564ac6a26 (diff)
downloaddolphin-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/dolphin.cpp')
-rw-r--r--src/dolphin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dolphin.cpp b/src/dolphin.cpp
index 8d3874e..de44df9 100644
--- a/src/dolphin.cpp
+++ b/src/dolphin.cpp
@@ -126,7 +126,7 @@ void Dolphin::dropURLs(const KURL::List& urls,
TDEPopupMenu popup(this);
popup.insertItem(SmallIcon("goto"), i18n("&Move Here") + "\t" + KKey::modFlagLabel(KKey::SHIFT), 0);
- popup.insertItem(SmallIcon("editcopy"), i18n( "&Copy Here" ) + "\t" + KKey::modFlagLabel(KKey::CTRL), 1);
+ popup.insertItem(SmallIcon("edit-copy"), i18n( "&Copy Here" ) + "\t" + KKey::modFlagLabel(KKey::CTRL), 1);
popup.insertItem(i18n("&Link Here") + "\t" + KKey::modFlagLabel((KKey::ModFlag)(KKey::CTRL|KKey::SHIFT)), 2);
popup.insertSeparator();
popup.insertItem(SmallIcon("process-stop"), i18n("Cancel"), 3);
@@ -549,7 +549,7 @@ void Dolphin::deleteItems()
const bool del = KMessageBox::warningContinueCancel(this,
text,
TQString(),
- KGuiItem(i18n("Delete"), SmallIcon("editdelete"))
+ KGuiItem(i18n("Delete"), SmallIcon("edit-delete"))
) == KMessageBox::Continue;
if (del) {
TDEIO::Job* job = TDEIO::del(list);
@@ -1193,7 +1193,7 @@ void Dolphin::setupActions()
TDEAction* deleteAction = new TDEAction(i18n("Delete"), "Shift+Delete",
TQT_TQOBJECT(this), TQT_SLOT(deleteItems()),
actionCollection(), "delete");
- deleteAction->setIcon("editdelete");
+ deleteAction->setIcon("edit-delete");
new TDEAction(i18n("Propert&ies"), "Alt+Return",
TQT_TQOBJECT(this), TQT_SLOT(properties()),