aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/component-factory.c6
2 files changed, 10 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 70b8b6b8e7..7f3bd5b935 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2002-07-31 Ettore Perazzoli <ettore@ximian.com>
+
+ * component-factory.c (create_component): Pass "mail" as
+ @folder_type to
+ evolution_shell_component_add_user_creatable_item().
+
2002-07-31 Not Zed <NotZed@Ximian.com>
* mail-display.c: Added global cameldatacache for managing remote
diff --git a/mail/component-factory.c b/mail/component-factory.c
index 1f95caa077..64baf75714 100644
--- a/mail/component-factory.c
+++ b/mail/component-factory.c
@@ -993,12 +993,14 @@ create_component (void)
evolution_shell_component_add_user_creatable_item (shell_component, "post",
_("New Message Post"), _("_Post Message"),
- _("Post a new mail message"), 'p',
+ _("Post a new mail message"),
+ "mail", 'p',
new_mail_icon);
evolution_shell_component_add_user_creatable_item (shell_component, "message",
_("New Mail Message"), _("_Mail Message"),
- _("Compose a new mail message"), 'm',
+ _("Compose a new mail message"),
+ "mail", 'm',
new_mail_icon);
if (new_mail_icon != NULL)