aboutsummaryrefslogtreecommitdiff
path: root/src/messageview.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-02-01 06:14:04 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-02-01 06:14:04 +0000
commit06419d2b001022b5c85d6fca399dfbac1bfe4427 (patch)
tree75cab54610c74685d00221617dcee069fe8d1bba /src/messageview.c
parent82a2ac81b66667aaf0d45d3db27388c0b4cccee8 (diff)
disabled Actions menu on win32.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@952 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/messageview.c')
-rw-r--r--src/messageview.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/messageview.c b/src/messageview.c
index 4ebb6049..4a7ef5be 100644
--- a/src/messageview.c
+++ b/src/messageview.c
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2005 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2006 Hiroyuki Yamamoto
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -276,8 +276,10 @@ static GtkItemFactoryEntry msgview_entries[] =
NULL, create_filter_cb, FLT_BY_TO, NULL},
{N_("/_Tools/_Create filter rule/by _Subject"),
NULL, create_filter_cb, FLT_BY_SUBJECT, NULL},
+#ifndef G_OS_WIN32
{N_("/_Tools/---"), NULL, NULL, 0, "<Separator>"},
{N_("/_Tools/Actio_ns"), NULL, NULL, 0, "<Branch>"},
+#endif
{N_("/_Help"), NULL, NULL, 0, "<Branch>"},
{N_("/_Help/_About"), NULL, about_cb, 0, NULL}
@@ -426,7 +428,9 @@ MessageView *messageview_create_with_new_window(void)
messageview_init(msgview);
ifactory = gtk_item_factory_from_widget(menubar);
+#ifndef G_OS_WIN32
action_update_msgview_menu(ifactory, msgview);
+#endif
messageview_list = g_list_append(messageview_list, msgview);