make things compile on an alpha. passing NULL to a var_arg not portable.

2003-02-17  Jody Goldberg <jody@gnome.org>

	* gal/e-table/e-table-group.c (e_table_group_construct) : make things
	  compile on an alpha.  passing NULL to a var_arg not portable.
	  This seems like a better approach.

svn path=/trunk/; revision=19924
This commit is contained in:
Jody Goldberg
2003-02-17 19:23:16 +00:00
committed by Jody Goldberg
parent 6f8b2d31d9
commit 8be77ed0d8

View File

@ -134,7 +134,9 @@ e_table_group_construct (GnomeCanvasGroup *parent,
g_object_ref (etg->header);
etg->model = model;
g_object_ref (etg->model);
gnome_canvas_item_construct (GNOME_CANVAS_ITEM (etg), parent, 0, NULL);
g_object_set (G_OBJECT (etg),
"parent", parent,
NULL);
}
/**