diff options
-rw-r--r-- | composer/ChangeLog | 5 | ||||
-rw-r--r-- | composer/e-msg-composer.c | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 6c3c49bdac..faca377d51 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,8 @@ +2000-07-08 Dan Winship <danw@helixcode.com> + + * e-msg-composer.c (create_menubar): Create an empty "Edit" menu + for the editor control to insert itself into. + 2000-07-08 Jeffrey Stedfast <fejj@helixcode.com> * .cvsignore: Ignore dynamically created source files diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 6c4ea73270..bd675cae34 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -714,6 +714,10 @@ static GnomeUIInfo file_tree[] = { GNOMEUIINFO_END }; +static GnomeUIInfo edit_tree[] = { + GNOMEUIINFO_END +}; + static GnomeUIInfo view_tree[] = { GNOMEUIINFO_ITEM_STOCK (N_("View _attachments"), N_("View/hide attachments"), menu_view_attachments_activate_cb, GNOME_STOCK_MENU_ATTACH), @@ -722,6 +726,7 @@ static GnomeUIInfo view_tree[] = { static GnomeUIInfo menubar_info[] = { GNOMEUIINFO_MENU_FILE_TREE (file_tree), + GNOMEUIINFO_MENU_EDIT_TREE (edit_tree), GNOMEUIINFO_MENU_VIEW_TREE (view_tree), GNOMEUIINFO_END }; |