diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-08-11 05:09:42 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-08-11 05:09:42 +0800 |
commit | 3e0c7948c33ed292e6e9797072a84c79d29cb180 (patch) | |
tree | a7883ad47ed8e566334cb6ad3e6259d259a58b5b /widgets | |
parent | 0e5939dc90c938845107afec2276c5e404802bf9 (diff) | |
download | gsoc2013-evolution-3e0c7948c33ed292e6e9797072a84c79d29cb180.tar gsoc2013-evolution-3e0c7948c33ed292e6e9797072a84c79d29cb180.tar.gz gsoc2013-evolution-3e0c7948c33ed292e6e9797072a84c79d29cb180.tar.bz2 gsoc2013-evolution-3e0c7948c33ed292e6e9797072a84c79d29cb180.tar.lz gsoc2013-evolution-3e0c7948c33ed292e6e9797072a84c79d29cb180.tar.xz gsoc2013-evolution-3e0c7948c33ed292e6e9797072a84c79d29cb180.tar.zst gsoc2013-evolution-3e0c7948c33ed292e6e9797072a84c79d29cb180.zip |
Don't display the Define Views dialog.
2001-08-10 Christopher James Lahey <clahey@ximian.com>
* menus/gal-view-menus.c (build_menus): Don't display the Define
Views dialog.
svn path=/trunk/; revision=11899
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/ChangeLog | 13 | ||||
-rw-r--r-- | widgets/menus/gal-view-menus.c | 2 |
2 files changed, 11 insertions, 4 deletions
diff --git a/widgets/ChangeLog b/widgets/ChangeLog index 8b3d4d8b83..0f500314fd 100644 --- a/widgets/ChangeLog +++ b/widgets/ChangeLog @@ -1,9 +1,14 @@ +2001-08-10 Christopher James Lahey <clahey@ximian.com> + + * menus/gal-view-menus.c (build_menus): Don't display the Define + Views dialog. + 2001-07-02 Anna Marie Dirks <anna@ximian.com> - *misc/e-filter-bar.c (option_changed): Specified a default size - for the Advanced Search dialog such that when it first appear, it - is large enough to view all parts of a search clause without - the user needing to resize it. + * misc/e-filter-bar.c (option_changed): Specified a default size + for the Advanced Search dialog such that when it first appear, it + is large enough to view all parts of a search clause without the + user needing to resize it. 2001-05-31 Federico Mena Quintero <federico@ximian.com> diff --git a/widgets/menus/gal-view-menus.c b/widgets/menus/gal-view-menus.c index 3e81b59aee..58d13d1545 100644 --- a/widgets/menus/gal-view-menus.c +++ b/widgets/menus/gal-view-menus.c @@ -252,12 +252,14 @@ build_menus(GalViewMenus *menus) e_list_append (menus->priv->listenerClosures, closure); } +#if 0 menuitem = bonobo_ui_node_new_child(submenu, "separator"); menuitem = bonobo_ui_node_new_child(submenu, "menuitem"); bonobo_ui_node_set_attr(menuitem, "name", "DefineViews"); bonobo_ui_node_set_attr(menuitem, "_label", N_("Define Views")); bonobo_ui_node_set_attr(menuitem, "verb", "DefineViews"); +#endif string = bonobo_ui_node_to_string(root, TRUE); xml = g_strdup(string); |