summaryrefslogtreecommitdiffstats
path: root/katapult/katapult
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 14:24:06 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 14:24:06 -0500
commite858f6358872030fed4deeb221b71e7d139ee3ed (patch)
tree7e0edc30ca1a9db42aadcadb57cee3fb280a5d52 /katapult/katapult
parent849537fecaa3a3e0077586ee374aa8701b068e48 (diff)
downloadkatapult-e858f6358872030fed4deeb221b71e7d139ee3ed.tar.gz
katapult-e858f6358872030fed4deeb221b71e7d139ee3ed.zip
Fix exec icon location and bring it into XDG compliancer14.0.0
Diffstat (limited to 'katapult/katapult')
-rw-r--r--katapult/katapult/katapult.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/katapult/katapult/katapult.cpp b/katapult/katapult/katapult.cpp
index a2d2e14..7c4a43b 100644
--- a/katapult/katapult/katapult.cpp
+++ b/katapult/katapult/katapult.cpp
@@ -129,7 +129,7 @@ void Katapult::initAccel(TQWidget *parent)
contextMenu()->clear();
- new TDEAction(i18n("Execute"), "exec", Key_Return, TQT_TQOBJECT(this), TQT_SLOT(execute()), actions, "execute");
+ new TDEAction(i18n("Execute"), "application-x-executable", Key_Return, TQT_TQOBJECT(this), TQT_SLOT(execute()), actions, "execute");
new TDEAction(i18n("Clear"), "edit-clear", Key_Left, TQT_TQOBJECT(this), TQT_SLOT(clearQuery()), actions, "clear");
new TDEAction(i18n("Close"), "window-close", Key_Escape, TQT_TQOBJECT(this), TQT_SLOT(hideLauncher()), actions, "close");
new TDEAction(i18n("Complete Query"), "next", Key_Right, TQT_TQOBJECT(this), TQT_SLOT(completeQuery()), actions, "complete_query");