From 4c4fed8e0edc73e9fa3eab8185bd06e9f693f94a Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 12 Oct 2014 17:47:41 -0500 Subject: [PATCH] Bring stop, lock, exit, and run icons into XDG compliance --- src/dolphin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dolphin.cpp b/src/dolphin.cpp index 2e85ea3..8d3874e 100644 --- a/src/dolphin.cpp +++ b/src/dolphin.cpp @@ -129,7 +129,7 @@ void Dolphin::dropURLs(const KURL::List& urls, popup.insertItem(SmallIcon("editcopy"), 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("stop"), i18n("Cancel"), 3); + popup.insertItem(SmallIcon("process-stop"), i18n("Cancel"), 3); popup.setAccel(i18n("Escape"), 3); selectedIndex = popup.exec(TQCursor::pos()); @@ -1293,7 +1293,7 @@ void Dolphin::setupActions() TDEAction* stopAction = new TDEAction(i18n("Stop"), 0, TQT_TQOBJECT(this), TQT_SLOT(stopLoading()), actionCollection(), "stop"); - stopAction->setIcon("stop"); + stopAction->setIcon("process-stop"); new TDEAction(i18n("Edit Location"), "Ctrl+L", TQT_TQOBJECT(this), TQT_SLOT(editLocation()),