aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-component.c
diff options
context:
space:
mode:
authorHans Petter Jansson <hpj@ximian.com>2002-12-07 09:37:23 +0800
committerHans Petter <hansp@src.gnome.org>2002-12-07 09:37:23 +0800
commit24086f5caa0d8309a7890f7ddde16fbfd60424f8 (patch)
tree666445b8bc297b0d15c7485c453ada1759f5c7dc /calendar/gui/calendar-component.c
parentaa0aa65bfafdbd0bbd04bef45e2bf57a2d835e9e (diff)
downloadgsoc2013-evolution-24086f5caa0d8309a7890f7ddde16fbfd60424f8.tar
gsoc2013-evolution-24086f5caa0d8309a7890f7ddde16fbfd60424f8.tar.gz
gsoc2013-evolution-24086f5caa0d8309a7890f7ddde16fbfd60424f8.tar.bz2
gsoc2013-evolution-24086f5caa0d8309a7890f7ddde16fbfd60424f8.tar.lz
gsoc2013-evolution-24086f5caa0d8309a7890f7ddde16fbfd60424f8.tar.xz
gsoc2013-evolution-24086f5caa0d8309a7890f7ddde16fbfd60424f8.tar.zst
gsoc2013-evolution-24086f5caa0d8309a7890f7ddde16fbfd60424f8.zip
Pass the env argument to bonobo_control_set_property ().
2002-12-06 Hans Petter Jansson <hpj@ximian.com> * 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
Diffstat (limited to 'calendar/gui/calendar-component.c')
-rw-r--r--calendar/gui/calendar-component.c4
1 files changed, 2 insertions, 2 deletions
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;