diff options
author | Stefano Karapetsas <[email protected]> | 2014-05-16 12:23:46 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-05-16 12:23:46 +0200 |
commit | e95ed95c19b113368845da8c868b73292e8f936f (patch) | |
tree | 0c122c6afbc549bfe191d84411c44dcba7b7c7c4 /capplets/default-applications/mate-da-capplet.c | |
parent | f7178cf0469593ad2fbda1dbb7ff5e438441e8f8 (diff) | |
download | mate-control-center-e95ed95c19b113368845da8c868b73292e8f936f.tar.bz2 mate-control-center-e95ed95c19b113368845da8c868b73292e8f936f.tar.xz |
default-applications: Fix word and spreadsheet editors lists
https://github.com/mate-desktop/mate-control-center/commit/097271c479a329cdc53cb0be03e1d8b819344624#commitcomment-6347305
Diffstat (limited to 'capplets/default-applications/mate-da-capplet.c')
-rw-r--r-- | capplets/default-applications/mate-da-capplet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/capplets/default-applications/mate-da-capplet.c b/capplets/default-applications/mate-da-capplet.c index e9bcee9d..1aea4825 100644 --- a/capplets/default-applications/mate-da-capplet.c +++ b/capplets/default-applications/mate-da-capplet.c @@ -583,8 +583,8 @@ show_dialog(MateDACapplet* capplet, const gchar* start_page) capplet->image_viewers = g_app_info_get_all_for_type("image/png"); capplet->file_managers = g_app_info_get_all_for_type("inode/directory"); capplet->document_viewers = g_app_info_get_all_for_type("application/pdf"); - capplet->word_editors = g_app_info_get_all_for_type("application/vnd.oasis.opendocument.text"); - capplet->spreadsheet_editors = g_app_info_get_all_for_type("application/vnd.oasis.opendocument.spreadsheet"); + capplet->word_editors = g_app_info_get_all_for_type("application/msword"); + capplet->spreadsheet_editors = g_app_info_get_all_for_type("application/vnd.ms-excel"); capplet->visual_ats = NULL; capplet->visual_ats = fill_list_from_desktop_file (capplet->visual_ats, APPLICATIONSDIR "/orca.desktop"); |