diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 14:24:09 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 14:24:09 -0500 |
commit | 0422c8d58dd07012584e5f99cbfe99d6a007cc1a (patch) | |
tree | 91be87cd1f55ae0540a55c12d80539b548a68f93 /kexi | |
parent | 0a2c994ddf38d9b765c0c8ff02670c4e663c2a11 (diff) | |
download | koffice-0422c8d58dd07012584e5f99cbfe99d6a007cc1a.tar.gz koffice-0422c8d58dd07012584e5f99cbfe99d6a007cc1a.zip |
Fix exec icon location and bring it into XDG compliance
Diffstat (limited to 'kexi')
-rw-r--r-- | kexi/kexiutils/debuggui.cpp | 2 | ||||
-rw-r--r-- | kexi/plugins/macros/kexipart/keximacropart.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kexi/kexiutils/debuggui.cpp b/kexi/kexiutils/debuggui.cpp index dd36052b..c48f0d81 100644 --- a/kexi/kexiutils/debuggui.cpp +++ b/kexi/kexiutils/debuggui.cpp @@ -102,7 +102,7 @@ void KexiUtils::addAlterTableActionDebug(const TQString& text, int nestingLevel) hbox->addWidget(btn_exec); KPushButton *btn_clear = new KPushButton(KGuiItem("Clear", "clear_left"), page); hbox->addWidget(btn_clear); - KPushButton *btn_sim = new KPushButton(KGuiItem("Simulate Execution", "exec"), page); + KPushButton *btn_sim = new KPushButton(KGuiItem("Simulate Execution", "application-x-executable"), page); btn_sim->setName("simulateAlterTableExecution"); hbox->addWidget(btn_sim); diff --git a/kexi/plugins/macros/kexipart/keximacropart.cpp b/kexi/plugins/macros/kexipart/keximacropart.cpp index c189b8ca..65bfaebf 100644 --- a/kexi/plugins/macros/kexipart/keximacropart.cpp +++ b/kexi/plugins/macros/kexipart/keximacropart.cpp @@ -120,7 +120,7 @@ void KexiMacroPart::initPartActions() void KexiMacroPart::initInstanceActions() { //kdDebug() << "KexiMacroPart::initInstanceActions()" << endl; - //createSharedAction(Kexi::DesignViewMode, i18n("Execute Macro"), "exec", 0, "data_execute"); + //createSharedAction(Kexi::DesignViewMode, i18n("Execute Macro"), "application-x-executable", 0, "data_execute"); } KexiViewBase* KexiMacroPart::createView(TQWidget* parent, KexiDialogBase* dialog, KexiPart::Item& item, int viewMode, TQMap<TQString,TQString>*) |