summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:47:41 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:47:41 -0500
commit4c4fed8e0edc73e9fa3eab8185bd06e9f693f94a (patch)
tree04dd105793bda627e22bc21915ea6f4e23ca83fa
parent5b1f358aad613d6b5de7e02efffefe5d6e7bc883 (diff)
downloaddolphin-4c4fed8e0edc73e9fa3eab8185bd06e9f693f94a.tar.gz
dolphin-4c4fed8e0edc73e9fa3eab8185bd06e9f693f94a.zip
Bring stop, lock, exit, and run icons into XDG compliance
-rw-r--r--src/dolphin.cpp4
1 files 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()),