From fb320bf9dad4d986978cbda4cf0d8a38b8014d69 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Mon, 29 May 2000 00:27:41 +0000 Subject: Fixed setting of arguments. 2000-05-28 Christopher James Lahey * e-table-group-container.c: Fixed setting of arguments. svn path=/trunk/; revision=3256 --- widgets/e-table/ChangeLog | 4 ++++ widgets/e-table/e-table-group-container.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'widgets/e-table') diff --git a/widgets/e-table/ChangeLog b/widgets/e-table/ChangeLog index ba13b88ec5..3cff3fcf39 100644 --- a/widgets/e-table/ChangeLog +++ b/widgets/e-table/ChangeLog @@ -1,3 +1,7 @@ +2000-05-28 Christopher James Lahey + + * e-table-group-container.c: Fixed setting of arguments. + 2000-05-28 Christopher James Lahey * e-table-group-container.c, e-table-group-leaf.c, diff --git a/widgets/e-table/e-table-group-container.c b/widgets/e-table/e-table-group-container.c index 8b6859af8b..39547cd837 100644 --- a/widgets/e-table/e-table-group-container.c +++ b/widgets/e-table/e-table-group-container.c @@ -489,7 +489,7 @@ etgc_set_arg (GtkObject *object, GtkArg *arg, guint arg_id) for (list = etgc->children; list; list = g_list_next (list)) { ETableGroupContainerChildNode *child_node = (ETableGroupContainerChildNode *)list->data; gtk_object_set (GTK_OBJECT(child_node->child), - "draw_grid", GTK_VALUE_BOOL (*arg), + "drawgrid", GTK_VALUE_BOOL (*arg), NULL); } break; @@ -499,7 +499,7 @@ etgc_set_arg (GtkObject *object, GtkArg *arg, guint arg_id) for (list = etgc->children; list; list = g_list_next (list)) { ETableGroupContainerChildNode *child_node = (ETableGroupContainerChildNode *)list->data; gtk_object_set (GTK_OBJECT(child_node->child), - "draw_focus", GTK_VALUE_BOOL (*arg), + "drawfocus", GTK_VALUE_BOOL (*arg), NULL); } break; @@ -509,7 +509,7 @@ etgc_set_arg (GtkObject *object, GtkArg *arg, guint arg_id) for (list = etgc->children; list; list = g_list_next (list)) { ETableGroupContainerChildNode *child_node = (ETableGroupContainerChildNode *)list->data; gtk_object_set (GTK_OBJECT(child_node->child), - "mode_spreadsheet", GTK_VALUE_BOOL (*arg), + "spreadsheet", GTK_VALUE_BOOL (*arg), NULL); } break; -- cgit v1.2.3