diff options
author | Not Zed <NotZed@Ximian.com> | 2002-11-19 12:56:45 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-11-19 12:56:45 +0800 |
commit | de63e5c5e35d0a52dcdfa160ac22b9217608c42a (patch) | |
tree | 9a6aafeff4f55cce0ac37e0db517e9d061ddbdeb /calendar/gui/e-meeting-model.c | |
parent | a645910fc85109532fddde2d33a4d172120ef163 (diff) | |
download | gsoc2013-evolution-de63e5c5e35d0a52dcdfa160ac22b9217608c42a.tar.gz gsoc2013-evolution-de63e5c5e35d0a52dcdfa160ac22b9217608c42a.tar.zst gsoc2013-evolution-de63e5c5e35d0a52dcdfa160ac22b9217608c42a.zip |
pass type to bonobo_widget::set_property. (select_names_ok_cb): ", for
2002-11-19 Not Zed <NotZed@Ximian.com>
* gui/e-meeting-model.c (get_select_name_dialog): pass type to
bonobo_widget::set_property.
(select_names_ok_cb): ", for get_property.
* gui/dialogs/e-delegate-dialog.c (e_delegate_dialog_construct):
pass type to bonobo_widget::set_property & plug small leak.
(e_delegate_dialog_get_delegate): ", for get_property.
(e_delegate_dialog_get_delegate_name): "
* gui/dialogs/comp-editor-util.c (comp_editor_contacts_to_widget):
pass type to bonobo_widget::set_property.
(comp_editor_contacts_to_component): ", for get_property
svn path=/trunk/; revision=18835
Diffstat (limited to 'calendar/gui/e-meeting-model.c')
-rw-r--r-- | calendar/gui/e-meeting-model.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-meeting-model.c b/calendar/gui/e-meeting-model.c index af89468255..fd1ffa50df 100644 --- a/calendar/gui/e-meeting-model.c +++ b/calendar/gui/e-meeting-model.c @@ -1711,7 +1711,7 @@ get_select_name_dialog (EMeetingModel *im) control_widget = bonobo_widget_new_control_from_objref (corba_control, CORBA_OBJECT_NIL); - bonobo_widget_set_property (BONOBO_WIDGET (control_widget), "text", "", NULL); + bonobo_widget_set_property (BONOBO_WIDGET (control_widget), "text", TC_CORBA_string, "", NULL); } CORBA_exception_free (&ev); @@ -1809,7 +1809,7 @@ select_names_ok_cb (BonoboListener *listener, control_widget = bonobo_widget_new_control_from_objref (corba_control, CORBA_OBJECT_NIL); - bonobo_widget_get_property (BONOBO_WIDGET (control_widget), "destinations", &string, NULL); + bonobo_widget_get_property (BONOBO_WIDGET (control_widget), "destinations", TC_CORBA_string, &string, NULL); destv = e_destination_importv (string); if (destv != NULL) { process_section (im, destv, roles[i]); |