From 9238a8a25904e282ea1115fc903d3490cba28b60 Mon Sep 17 00:00:00 2001 From: Paul Bolle Date: Thu, 7 Aug 2008 19:30:06 +0000 Subject: ** Fix for bug #546788 2008-08-07 Paul Bolle ** Fix for bug #546788 * mail/em-folder-view.c: "/commands/ViewNormal" isn't actually used. It is probably a leftover from a previous way of setting the formatting style. It can be removed. Related cleanups. * ui/evolution-mail-message.xml: Drop unused "ViewNormal" cmd entry. svn path=/trunk/; revision=35929 --- mail/em-folder-view.c | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) (limited to 'mail/em-folder-view.c') diff --git a/mail/em-folder-view.c b/mail/em-folder-view.c index 3dad22a1a3..b16312762b 100644 --- a/mail/em-folder-view.c +++ b/mail/em-folder-view.c @@ -220,13 +220,6 @@ static const EMFolderViewEnable emfv_enable_map[] = { { "MailStop", 0 }, { NULL }, - - /* always enabled - - { "ViewFullHeaders", IS_0MESSAGE, 0 }, - { "ViewNormal", IS_0MESSAGE, 0 }, - { "ViewSource", IS_0MESSAGE, 0 }, - { "CaretMode", IS_0MESSAGE, 0 }, */ }; struct _EMFolderViewPrivate { @@ -2210,13 +2203,6 @@ emfv_enable_menus(EMFolderView *emfv) g_string_free(name, TRUE); } -/* must match em_format_mode_t order */ -static const char * const emfv_display_styles[] = { - "/commands/ViewNormal", - "/commands/ViewFullHeaders", - "/commands/ViewSource" -}; - static void emfv_view_mode(BonoboUIComponent *uic, const char *path, Bonobo_UIComponent_EventType type, const char *state, void *data) { @@ -2300,10 +2286,9 @@ emfv_activate(EMFolderView *emfv, BonoboUIComponent *uic, int act) bonobo_ui_component_add_listener(uic, "CaretMode", emfv_caret_mode, emfv); style = ((EMFormat *)emfv->preview)->mode?EM_FORMAT_ALLHEADERS:EM_FORMAT_NORMAL; - bonobo_ui_component_set_prop(uic, emfv_display_styles[style], "state", style?"1":"0", NULL); - /* bonobo_ui_component_add_listener(uic, "ViewNormal", emfv_view_mode, emfv); */ + if (style) + bonobo_ui_component_set_prop(uic, "/commands/ViewFullHeaders", "state", "1", NULL); bonobo_ui_component_add_listener(uic, "ViewFullHeaders", emfv_view_mode, emfv); - /* bonobo_ui_component_add_listener(uic, "ViewSource", emfv_view_mode, emfv); */ em_format_set_mode((EMFormat *)emfv->preview, style); if (emfv->folder) -- cgit v1.2.3