summaryrefslogtreecommitdiffstats
path: root/languages/ruby
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:52:16 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:52:16 -0500
commitd06bb8b517afe956b59aed99122f80d3809498a0 (patch)
tree9a14247bc1749189777db14187c06d827f2edcfa /languages/ruby
parentf9a9d3f59ec01bfc6ac037e801c0decece9596cc (diff)
downloadtdevelop-d06bb8b517afe956b59aed99122f80d3809498a0.tar.gz
tdevelop-d06bb8b517afe956b59aed99122f80d3809498a0.zip
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'languages/ruby')
-rw-r--r--languages/ruby/debugger/debuggerpart.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/languages/ruby/debugger/debuggerpart.cpp b/languages/ruby/debugger/debuggerpart.cpp
index 35e6a2d2..b3f91d75 100644
--- a/languages/ruby/debugger/debuggerpart.cpp
+++ b/languages/ruby/debugger/debuggerpart.cpp
@@ -115,7 +115,7 @@ RubyDebuggerPart::RubyDebuggerPart( TQObject *parent, const char *name, const TQ
"breakpoint item allows you to change "
"the breakpoint and will take you "
"to the source in the editor window."));
- rdbBreakpointWidget->setIcon( SmallIcon("stop") );
+ rdbBreakpointWidget->setIcon( SmallIcon("process-stop") );
mainWindow()->embedOutputView(rdbBreakpointWidget, i18n("Breakpoints"), i18n("Debugger breakpoints"));
framestackWidget = new FramestackWidget( 0, "rdbFramestackWidget" );
@@ -170,7 +170,7 @@ RubyDebuggerPart::RubyDebuggerPart( TQObject *parent, const char *name, const TQ
"while it is running, in order to get information "
"about variables, frame stack, and so on.") );
- action = new TDEAction(i18n("Sto&p"), "stop", 0,
+ action = new TDEAction(i18n("Sto&p"), "process-stop", 0,
this, TQT_SLOT(slotStop()),
actionCollection(), "debug_stop");
action->setToolTip( i18n("Stop debugger") );