From 24086f5caa0d8309a7890f7ddde16fbfd60424f8 Mon Sep 17 00:00:00 2001 From: Hans Petter Jansson Date: Sat, 7 Dec 2002 01:37:23 +0000 Subject: Pass the env argument to bonobo_control_set_property (). 2002-12-06 Hans Petter Jansson * gui/component-factory.c (): Pass the env argument to bonobo_control_set_property (). * gui/e-meeting-model.c (class_init): We're no longer derived from GtkObject, so use GObject class methods instead. destroy->finalize. (destroy): Zapped. (finalize): Implement based on old destroy (). svn path=/trunk/; revision=19048 --- calendar/gui/calendar-component.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'calendar/gui/calendar-component.c') diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index 79ae0565fa..ff13791617 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -130,9 +130,9 @@ create_view (EvolutionShellComponent *shell_component, return EVOLUTION_SHELL_COMPONENT_UNSUPPORTEDTYPE; } - bonobo_control_set_property (control, "folder_uri", TC_CORBA_string, physical_uri, NULL); + bonobo_control_set_property (control, NULL, "folder_uri", TC_CORBA_string, physical_uri, NULL); if (type_is_calendar (type) && *view_info) - bonobo_control_set_property (control, "view", TC_CORBA_string, view_info, NULL); + bonobo_control_set_property (control, NULL, "view", TC_CORBA_string, view_info, NULL); *control_return = control; -- cgit