diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-10-23 11:48:34 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-10-23 11:48:34 +0900 |
commit | 0ffe0dfb29f3be5bb87b977b3a8ae1d9cd4346d5 (patch) | |
tree | 9d6b46524badc15e4915e37777375b31ef326068 /languages/ruby/rubysupport_part.cpp | |
parent | 91d8d752c79df1bb4db425affd34116ec1157dd7 (diff) | |
parent | ca46c5047fd0f619486b89e032c34d9a5664cdcb (diff) | |
download | tdevelop-0ffe0dfb29f3be5bb87b977b3a8ae1d9cd4346d5.tar.gz tdevelop-0ffe0dfb29f3be5bb87b977b3a8ae1d9cd4346d5.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdevelop
Diffstat (limited to 'languages/ruby/rubysupport_part.cpp')
-rw-r--r-- | languages/ruby/rubysupport_part.cpp | 4 |
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")); |