From 451c410dec4efdef1562417066fd7b7464b14004 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Tue, 20 Mar 2001 16:22:30 +0000 Subject: Bumped the version number to 05.99.9. 2001-03-20 Christopher James Lahey * configure.in: Bumped the version number to 05.99.9. From gal/e-table/ChangeLog: 2001-03-20 Christopher James Lahey * e-table-click-to-add.c: Turn on the vertical grid. * e-table-group-container.c, e-table-group-container.h, e-table-group-leaf.c, e-table-group-leaf.h, e-table-item.c, e-table-item.h: Replaced the "drawgrid" argument with "horizontal_draw_grid" and "vertical_draw_grid" arguments. * e-table-specification.c, e-table-specifcation: Replaced the draw_grid setting with the horizontal_draw_grid and vertical_draw_grid settings. If the draw-grid property is set in a ETableSpecification it is still obeyed and overrides the vertical-draw-grid and horizontal-draw-grid properties. * e-table.c, e-table.h, e-tree.c, e-tree.h: Deal with the horizontal_draw_grid and vertical_draw_grid changes. * e-tree-model.h: Added a missing include. svn path=/trunk/; revision=8846 --- widgets/table/e-table-item.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'widgets/table/e-table-item.h') diff --git a/widgets/table/e-table-item.h b/widgets/table/e-table-item.h index 73d7032b1f..5e9ea2eb99 100644 --- a/widgets/table/e-table-item.h +++ b/widgets/table/e-table-item.h @@ -53,7 +53,8 @@ typedef struct { GdkGC *focus_gc; GdkBitmap *stipple; - guint draw_grid:1; + guint horizontal_draw_grid:1; + guint vertical_draw_grid:1; guint draw_focus:1; guint renderers_can_change_size:1; guint cell_views_realized:1; -- cgit