summaryrefslogtreecommitdiffstats
path: root/kturtle
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:51:05 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:51:05 -0500
commit75cfc55a309c0f644baa389621d8c90063c180ab (patch)
treea88b7c97bb9e42916e959ada129a261941a13253 /kturtle
parenta1155443640efe9db201c47cc0bf280f1a3dffa5 (diff)
downloadtdeedu-75cfc55a309c0f644baa389621d8c90063c180ab.tar.gz
tdeedu-75cfc55a309c0f644baa389621d8c90063c180ab.zip
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'kturtle')
-rw-r--r--kturtle/src/kturtle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kturtle/src/kturtle.cpp b/kturtle/src/kturtle.cpp
index e2080af1..7170c742 100644
--- a/kturtle/src/kturtle.cpp
+++ b/kturtle/src/kturtle.cpp
@@ -138,7 +138,7 @@ void MainWindow::setupActions()
pause = new TDEToggleAction(i18n("Pause E&xecution"), "player_pause", Key_Pause, TQT_TQOBJECT(this), TQT_SLOT( slotPauseExecution() ), ac, "pause");
pause->setChecked(false);
pause->setEnabled(false);
- stop = new TDEAction(i18n("Stop E&xecution"), "stop", Key_Escape, TQT_TQOBJECT(this), TQT_SLOT( slotAbortExecution() ), ac, "stop");
+ stop = new TDEAction(i18n("Stop E&xecution"), "process-stop", Key_Escape, TQT_TQOBJECT(this), TQT_SLOT( slotAbortExecution() ), ac, "stop");
stop->setEnabled(false);
KStdAction::print(TQT_TQOBJECT(this), TQT_SLOT(slotPrint()), ac);
KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(close()), ac);