diff options
-rw-r--r-- | widgets/e-table/ChangeLog | 4 | ||||
-rw-r--r-- | widgets/e-table/e-table-group-container.c | 6 | ||||
-rw-r--r-- | widgets/table/e-table-group-container.c | 6 |
3 files changed, 10 insertions, 6 deletions
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,5 +1,9 @@ 2000-05-28 Christopher James Lahey <clahey@helixcode.com> + * e-table-group-container.c: Fixed setting of arguments. + +2000-05-28 Christopher James Lahey <clahey@helixcode.com> + * e-table-group-container.c, e-table-group-leaf.c, e-table-group.c, e-table-group.h, e-table-item.c, e-table-item.h, e-table.c, e-table.h: Added double click handling. 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; diff --git a/widgets/table/e-table-group-container.c b/widgets/table/e-table-group-container.c index 8b6859af8b..39547cd837 100644 --- a/widgets/table/e-table-group-container.c +++ b/widgets/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; |