summaryrefslogtreecommitdiffstats
path: root/languages/ruby
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 14:24:34 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 14:24:34 -0500
commitca46c5047fd0f619486b89e032c34d9a5664cdcb (patch)
tree7e1c8b79bd19e78f23cab54010164dd290639ce3 /languages/ruby
parent5773501d560f5ff65d407715536c7a5dae0955fe (diff)
downloadtdevelop-ca46c5047fd0f619486b89e032c34d9a5664cdcb.tar.gz
tdevelop-ca46c5047fd0f619486b89e032c34d9a5664cdcb.zip
Fix exec icon location and bring it into XDG compliance
Diffstat (limited to 'languages/ruby')
-rw-r--r--languages/ruby/rubysupport_part.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/languages/ruby/rubysupport_part.cpp b/languages/ruby/rubysupport_part.cpp
index e1745a02..0b4627b9 100644
--- a/languages/ruby/rubysupport_part.cpp
+++ b/languages/ruby/rubysupport_part.cpp
@@ -48,14 +48,14 @@ RubySupportPart::RubySupportPart(TQObject *parent, const char *name, const TQStr
setXMLFile("kdevrubysupport.rc");
TDEAction *action;
- action = new TDEAction( i18n("&Run"), "exec", SHIFT + Key_F9,
+ action = new TDEAction( i18n("&Run"), "application-x-executable", SHIFT + Key_F9,
this, TQT_SLOT(slotRun()),
actionCollection(), "build_execute" );
action->setToolTip(i18n("Run"));
action->setWhatsThis(i18n("<b>Run</b><p>Starts an application."));
action->setIcon("ruby_run.png");
- action = new TDEAction( i18n("Run Test Under Cursor"), "exec", ALT + Key_F9,
+ action = new TDEAction( i18n("Run Test Under Cursor"), "application-x-executable", ALT + Key_F9,
this, TQT_SLOT(slotRunTestUnderCursor()),
actionCollection(), "build_execute_test_function" );
action->setToolTip(i18n("Run Test Under Cursor"));