diff options
author | Hans Petter Jansson <hpj@ximian.com> | 2002-12-07 09:37:23 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2002-12-07 09:37:23 +0800 |
commit | 24086f5caa0d8309a7890f7ddde16fbfd60424f8 (patch) | |
tree | 666445b8bc297b0d15c7485c453ada1759f5c7dc /calendar/gui/component-factory.c | |
parent | aa0aa65bfafdbd0bbd04bef45e2bf57a2d835e9e (diff) | |
download | gsoc2013-evolution-24086f5caa0d8309a7890f7ddde16fbfd60424f8.tar.gz 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/component-factory.c')
-rw-r--r-- | calendar/gui/component-factory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/component-factory.c b/calendar/gui/component-factory.c index 79ae0565fa..ff13791617 100644 --- a/calendar/gui/component-factory.c +++ b/calendar/gui/component-factory.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; |