aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-view.c
diff options
context:
space:
mode:
authorPaul Bolle <pebolle@tiscali.nl>2008-08-08 03:30:06 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-08-08 03:30:06 +0800
commit9238a8a25904e282ea1115fc903d3490cba28b60 (patch)
tree6e9327541cfa6c83a530767980cb57df7d7824b9 /mail/em-folder-view.c
parent92c958d9bf5f875848650c7e137e5d7ca14a96aa (diff)
downloadgsoc2013-evolution-9238a8a25904e282ea1115fc903d3490cba28b60.tar
gsoc2013-evolution-9238a8a25904e282ea1115fc903d3490cba28b60.tar.gz
gsoc2013-evolution-9238a8a25904e282ea1115fc903d3490cba28b60.tar.bz2
gsoc2013-evolution-9238a8a25904e282ea1115fc903d3490cba28b60.tar.lz
gsoc2013-evolution-9238a8a25904e282ea1115fc903d3490cba28b60.tar.xz
gsoc2013-evolution-9238a8a25904e282ea1115fc903d3490cba28b60.tar.zst
gsoc2013-evolution-9238a8a25904e282ea1115fc903d3490cba28b60.zip
** Fix for bug #546788
2008-08-07 Paul Bolle <pebolle@tiscali.nl> ** 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
Diffstat (limited to 'mail/em-folder-view.c')
-rw-r--r--mail/em-folder-view.c19
1 files changed, 2 insertions, 17 deletions
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)