summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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()),