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/table/e-table-memory-store.h | |
parent | fe26a0fee38b095d62a68783ea4d1b01b04e22db (diff) | |
download | gsoc2013-evolution-acf4bad9d022d9d4c69e7d05877194157f3fd31c.tar gsoc2013-evolution-acf4bad9d022d9d4c69e7d05877194157f3fd31c.tar.gz gsoc2013-evolution-acf4bad9d022d9d4c69e7d05877194157f3fd31c.tar.bz2 gsoc2013-evolution-acf4bad9d022d9d4c69e7d05877194157f3fd31c.tar.lz gsoc2013-evolution-acf4bad9d022d9d4c69e7d05877194157f3fd31c.tar.xz 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/table/e-table-memory-store.h')
-rw-r--r-- | widgets/table/e-table-memory-store.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/table/e-table-memory-store.h b/widgets/table/e-table-memory-store.h index 60bd037758..2c088815de 100644 --- a/widgets/table/e-table-memory-store.h +++ b/widgets/table/e-table-memory-store.h @@ -97,11 +97,11 @@ void e_table_memory_store_adopt_value_at (ETableMemoryStore void *value); /* The size of these arrays is the number of columns. */ -void e_table_memory_store_insert (ETableMemoryStore *etms, +void e_table_memory_store_insert_array (ETableMemoryStore *etms, int row, void **store, gpointer data); -void e_table_memory_store_insert_list (ETableMemoryStore *etms, +void e_table_memory_store_insert (ETableMemoryStore *etms, int row, gpointer data, ...); |