summaryrefslogtreecommitdiffstats
path: root/src/textview.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:49:05 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:49:05 -0500
commita6ac7e8c7c59d45251a91c58ef6427488f9bef86 (patch)
treef35a49a0f9e3b34c94d130a7cb9d2a6d7c08a1eb /src/textview.cpp
parentaf0154d1a15a3e09c3bda7268a9387166ae3a763 (diff)
downloadktechlab-a6ac7e8c7c59d45251a91c58ef6427488f9bef86.tar.gz
ktechlab-a6ac7e8c7c59d45251a91c58ef6427488f9bef86.zip
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'src/textview.cpp')
-rw-r--r--src/textview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textview.cpp b/src/textview.cpp
index 96c0095..396382f 100644
--- a/src/textview.cpp
+++ b/src/textview.cpp
@@ -74,7 +74,7 @@ TextView::TextView( TextDocument * textDocument, ViewContainer *viewContainer, u
new TDEAction( i18n("Set &Breakpoint"), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(toggleBreakpoint()), ac, "debug_toggle_breakpoint" );
new TDEAction( i18n("Run"), "dbgrun", 0, textDocument, TQT_SLOT(debugRun()), ac, "debug_run" );
new TDEAction( i18n("Interrupt"), "player_pause", 0, textDocument, TQT_SLOT(debugInterrupt()), ac, "debug_interrupt" );
- new TDEAction( i18n("Stop"), "stop", 0, textDocument, TQT_SLOT(debugStop()), ac, "debug_stop" );
+ new TDEAction( i18n("Stop"), "process-stop", 0, textDocument, TQT_SLOT(debugStop()), ac, "debug_stop" );
new TDEAction( i18n("Step"), "dbgstep", TQt::CTRL|TQt::ALT|TQt::Key_Right, textDocument, TQT_SLOT(debugStep()), ac, "debug_step" );
new TDEAction( i18n("Step Over"), "dbgnext", 0, textDocument, TQT_SLOT(debugStepOver()), ac, "debug_step_over" );
new TDEAction( i18n("Step Out"), "dbgstepout", 0, textDocument, TQT_SLOT(debugStepOut()), ac, "debug_step_out" );