diff options
author | Dan Winship <danw@src.gnome.org> | 2000-07-09 08:32:31 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-07-09 08:32:31 +0800 |
commit | 4e266ce3d22478c62420daae862cf392ba1acfb1 (patch) | |
tree | 2f2b422de947d24ddd008e30cd3361fe30c775ca /composer | |
parent | d1bc4936d699830da46e384d32d9f60f3f8dc3fa (diff) | |
download | gsoc2013-evolution-4e266ce3d22478c62420daae862cf392ba1acfb1.tar gsoc2013-evolution-4e266ce3d22478c62420daae862cf392ba1acfb1.tar.gz gsoc2013-evolution-4e266ce3d22478c62420daae862cf392ba1acfb1.tar.bz2 gsoc2013-evolution-4e266ce3d22478c62420daae862cf392ba1acfb1.tar.lz gsoc2013-evolution-4e266ce3d22478c62420daae862cf392ba1acfb1.tar.xz gsoc2013-evolution-4e266ce3d22478c62420daae862cf392ba1acfb1.tar.zst gsoc2013-evolution-4e266ce3d22478c62420daae862cf392ba1acfb1.zip |
Create an empty "Edit" menu for the editor control to insert itself into.
* e-msg-composer.c (create_menubar): Create an empty "Edit" menu
for the editor control to insert itself into.
svn path=/trunk/; revision=3985
Diffstat (limited to 'composer')
-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 }; |