summaryrefslogtreecommitdiffstats
path: root/languages/csharp/csharpsupportpart.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2014-10-23 11:48:34 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2014-10-23 11:48:34 +0900
commit0ffe0dfb29f3be5bb87b977b3a8ae1d9cd4346d5 (patch)
tree9d6b46524badc15e4915e37777375b31ef326068 /languages/csharp/csharpsupportpart.cpp
parent91d8d752c79df1bb4db425affd34116ec1157dd7 (diff)
parentca46c5047fd0f619486b89e032c34d9a5664cdcb (diff)
downloadtdevelop-0ffe0dfb29f3be5bb87b977b3a8ae1d9cd4346d5.tar.gz
tdevelop-0ffe0dfb29f3be5bb87b977b3a8ae1d9cd4346d5.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdevelop
Diffstat (limited to 'languages/csharp/csharpsupportpart.cpp')
-rw-r--r--languages/csharp/csharpsupportpart.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/languages/csharp/csharpsupportpart.cpp b/languages/csharp/csharpsupportpart.cpp
index 154ff911..6da33030 100644
--- a/languages/csharp/csharpsupportpart.cpp
+++ b/languages/csharp/csharpsupportpart.cpp
@@ -62,17 +62,17 @@ CSharpSupportPart::CSharpSupportPart(TQObject *parent, const char *name, const T
TDEAction *action;
- action = new TDEAction( i18n("Execute Main Program"), "exec", 0,
+ action = new TDEAction( i18n("Execute Main Program"), "application-x-executable", 0,
this, TQT_SLOT(slotExecute()),
actionCollection(), "build_exec" );
action->setToolTip( i18n("Runs the CSharp program") );
- action = new TDEAction( i18n("Execute String..."), "exec", 0,
+ action = new TDEAction( i18n("Execute String..."), "application-x-executable", 0,
this, TQT_SLOT(slotExecuteString()),
actionCollection(), "build_execstring" );
action->setToolTip( i18n("Executes a string as CSharp code") );
- action = new TDEAction( i18n("Start CSharp Interpreter"), "exec", 0,
+ action = new TDEAction( i18n("Start CSharp Interpreter"), "application-x-executable", 0,
this, TQT_SLOT(slotStartInterpreter()),
actionCollection(), "build_runinterpreter" );
action->setToolTip( i18n("Starts the CSharp interpreter without a program") );