diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 01:27:25 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 01:27:25 -0500 |
commit | 27e7005bd4e07da193a74288d057761ab35cb5ed (patch) | |
tree | a32f4e40540b4502aae55797243155d8791bc277 /kmymoney2/kmymoney2.cpp | |
parent | 83766542e1f20ecaa894cc8e603e48926edb4de2 (diff) | |
download | kmymoney-27e7005bd4e07da193a74288d057761ab35cb5ed.tar.gz kmymoney-27e7005bd4e07da193a74288d057761ab35cb5ed.zip |
Bring most mimetypes in line with XDG specifications. The following are not fully verified in source as of this commit due to ubiquity: html, empty, info, make, man, misc, source, unknown
Diffstat (limited to 'kmymoney2/kmymoney2.cpp')
-rw-r--r-- | kmymoney2/kmymoney2.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmymoney2/kmymoney2.cpp b/kmymoney2/kmymoney2.cpp index 1785256..3e95fe5 100644 --- a/kmymoney2/kmymoney2.cpp +++ b/kmymoney2/kmymoney2.cpp @@ -365,7 +365,7 @@ void KMyMoney2App::initActions(void) new TDEAction(i18n("Reopen account"), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotAccountReopen()), actionCollection(), "account_reopen"); new TDEAction(i18n("Transaction report"), "view_info", 0, TQT_TQOBJECT(this), TQT_SLOT(slotAccountTransactionReport()), actionCollection(), "account_transaction_report"); #ifdef HAVE_KDCHART - new TDEAction(i18n("Show balance chart..."), "kchart_chrt", 0, TQT_TQOBJECT(this), TQT_SLOT(slotAccountChart()), actionCollection(), "account_chart"); + new TDEAction(i18n("Show balance chart..."), "application-x-kchart", 0, TQT_TQOBJECT(this), TQT_SLOT(slotAccountChart()), actionCollection(), "account_chart"); #endif new TDEAction(i18n("Map to online account"), "news_subscribe", 0, TQT_TQOBJECT(this), TQT_SLOT(slotAccountMapOnline()), actionCollection(), "account_online_map"); new TDEAction(i18n("Unmap account"), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotAccountUnmapOnline()), actionCollection(), "account_online_unmap"); @@ -1826,8 +1826,8 @@ void KMyMoney2App::slotSettings(void) dlg->addPage(homePage, i18n("Home"), "home"); dlg->addPage(schedulesPage, i18n("Scheduled\ntransactions"), "schedule"); dlg->addPage(encryptionPage, i18n("Encryption"), "kgpg"); - dlg->addPage(colorsPage, i18n("Colors"), "colorscm"); - dlg->addPage(fontsPage, i18n("Fonts"), "font"); + dlg->addPage(colorsPage, i18n("Colors"), "application-x-kcsrc"); + dlg->addPage(fontsPage, i18n("Fonts"), "font-x-generic"); dlg->addPage(onlineQuotesPage, i18n("Online Quotes"), "network_local"); dlg->addPage(forecastPage, i18n("Forecast"), "forcast"); dlg->addPage(pluginsPage, i18n("Plugins"), "connect_no"); |