aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-click-to-add.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-03-21 00:22:30 +0800
committerChris Lahey <clahey@src.gnome.org>2001-03-21 00:22:30 +0800
commit451c410dec4efdef1562417066fd7b7464b14004 (patch)
tree8cc5fb50f634a2b806cc8c39c5104237af023283 /widgets/table/e-table-click-to-add.c
parent726712806ea9f61f69d8c4e42ac2dedf1d7afdf2 (diff)
downloadgsoc2013-evolution-451c410dec4efdef1562417066fd7b7464b14004.tar
gsoc2013-evolution-451c410dec4efdef1562417066fd7b7464b14004.tar.gz
gsoc2013-evolution-451c410dec4efdef1562417066fd7b7464b14004.tar.bz2
gsoc2013-evolution-451c410dec4efdef1562417066fd7b7464b14004.tar.lz
gsoc2013-evolution-451c410dec4efdef1562417066fd7b7464b14004.tar.xz
gsoc2013-evolution-451c410dec4efdef1562417066fd7b7464b14004.tar.zst
gsoc2013-evolution-451c410dec4efdef1562417066fd7b7464b14004.zip
Bumped the version number to 05.99.9.
2001-03-20 Christopher James Lahey <clahey@ximian.com> * configure.in: Bumped the version number to 05.99.9. From gal/e-table/ChangeLog: 2001-03-20 Christopher James Lahey <clahey@ximian.com> * 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
Diffstat (limited to 'widgets/table/e-table-click-to-add.c')
-rw-r--r--widgets/table/e-table-click-to-add.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/widgets/table/e-table-click-to-add.c b/widgets/table/e-table-click-to-add.c
index cdaa446f90..3ca7729feb 100644
--- a/widgets/table/e-table-click-to-add.c
+++ b/widgets/table/e-table-click-to-add.c
@@ -301,7 +301,8 @@ finish_editing (ETableClickToAdd *etcta)
"ETableHeader", etcta->eth,
"ETableModel", etcta->one,
"minimum_width", etcta->width,
- "drawgrid", TRUE,
+ "horizontal_draw_grid", FALSE,
+ "vertical_draw_grid", TRUE,
"table_selection_model", etcta->selection,
"cursor_mode", E_CURSOR_SPREADSHEET,
NULL);
@@ -346,7 +347,8 @@ etcta_event (GnomeCanvasItem *item, GdkEvent *e)
"ETableHeader", etcta->eth,
"ETableModel", etcta->one,
"minimum_width", etcta->width,
- "drawgrid", TRUE,
+ "horizontal_draw_grid", FALSE,
+ "vertical_draw_grid", TRUE,
"table_selection_model", etcta->selection,
"cursor_mode", E_CURSOR_SPREADSHEET,
NULL);