diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-04-23 05:46:59 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-04-23 05:46:59 +0800 |
commit | acf4bad9d022d9d4c69e7d05877194157f3fd31c (patch) | |
tree | 80714dfa3acf377d55744a8d09644f937b7b3edd /widgets/menus/gal-view-instance.h | |
parent | fe26a0fee38b095d62a68783ea4d1b01b04e22db (diff) | |
download | gsoc2013-evolution-acf4bad9d022d9d4c69e7d05877194157f3fd31c.tar.gz gsoc2013-evolution-acf4bad9d022d9d4c69e7d05877194157f3fd31c.tar.zst gsoc2013-evolution-acf4bad9d022d9d4c69e7d05877194157f3fd31c.zip |
Bumped version number to 0.19.99.14.
2002-04-22 Christopher James Lahey <clahey@ximian.com>
* configure.in: Bumped version number to 0.19.99.14.
* gal/widgets/e-popup-menu.c, gal/widgets/e-popup-menu.h
(e_popup_menu_copy_1, e_popup_menu_free_1, e_popup_menu_copy,
e_popup_menu_free): Added these functions
From gal/e-table/ChangeLog:
2002-04-22 Christopher James Lahey <clahey@ximian.com>
* e-table-memory-store.c, e-table-memory-store.h: Renamed the
insert functions in this class to make a bit more sense.
From gal/menus/ChangeLog:
2002-04-22 Christopher James Lahey <clahey@ximian.com>
* gal-view-instance.c, gal-view-instance.h
(gal_view_instance_get_popup_menu,
gal_view_instance_free_popup_menu): Added these functions. Used
to add a current view menu to your popup menus.
From gal/shortcut-bar/ChangeLog:
2002-04-22 Christopher James Lahey <clahey@ximian.com>
* e-icon-bar.c (e_icon_bar_drag_motion): Removed an unused
variable.
svn path=/trunk/; revision=16559
Diffstat (limited to 'widgets/menus/gal-view-instance.h')
-rw-r--r-- | widgets/menus/gal-view-instance.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/widgets/menus/gal-view-instance.h b/widgets/menus/gal-view-instance.h index 9d0febf0f0..5e5ea6817e 100644 --- a/widgets/menus/gal-view-instance.h +++ b/widgets/menus/gal-view-instance.h @@ -26,6 +26,7 @@ #include <gtk/gtkobject.h> #include <gal/menus/gal-view-collection.h> +#include <gal/widgets/e-popup-menu.h> #include <libgnome/gnome-defs.h> BEGIN_GNOME_DECLS @@ -108,6 +109,9 @@ const char *gal_view_instance_get_default_view (GalViewInstance *inst void gal_view_instance_set_default_view (GalViewInstance *instance, const char *id); +EPopupMenu *gal_view_instance_get_popup_menu (GalViewInstance *instance); +void gal_view_instance_free_popup_menu (GalViewInstance *instance, + EPopupMenu *menu); END_GNOME_DECLS |