From 138e45cc665e70e637652eca1cae64ddf7e3b979 Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Tue, 26 Dec 2000 23:42:43 +0000 Subject: New BonoboPropertyEventless stuff pt 1 svn path=/trunk/; revision=7177 --- calendar/ChangeLog | 5 +++++ calendar/gui/calendar-summary.c | 8 ++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) (limited to 'calendar') diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 6861c3d698..9aa2728798 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2000-12-26 Iain Holmes + + * gui/calendar-summary.c (create_summary_view): Create a shared + BonoboEventSource object. + 2000-12-25 Miguel de Icaza * gui/e-day-view.c (e_day_view_init): Set draw background to FALSE. diff --git a/calendar/gui/calendar-summary.c b/calendar/gui/calendar-summary.c index 3544fbbc38..2def2f6fea 100644 --- a/calendar/gui/calendar-summary.c +++ b/calendar/gui/calendar-summary.c @@ -247,6 +247,7 @@ create_summary_view (ExecutiveSummaryComponentFactory *_factory, BonoboObject *component, *view; BonoboPersistStream *stream; BonoboPropertyBag *bag; + BonoboEventSource *event_source; CalSummary *summary; char *html, *file; @@ -282,8 +283,10 @@ create_summary_view (ExecutiveSummaryComponentFactory *_factory, gtk_signal_connect (GTK_OBJECT (component), "destroy", GTK_SIGNAL_FUNC (component_destroyed), summary); + event_source = bonobo_event_source_new (); + /* HTML view */ - view = executive_summary_html_view_new (); + view = executive_summary_html_view_new_full (event_source); summary->view = view; executive_summary_html_view_set_html (EXECUTIVE_SUMMARY_HTML_VIEW (view), @@ -291,7 +294,8 @@ create_summary_view (ExecutiveSummaryComponentFactory *_factory, bonobo_object_add_interface (component, view); /* BonoboPropertyBag */ - bag = bonobo_property_bag_new (get_property, NULL, summary); + bag = bonobo_property_bag_new_full (get_property, NULL, + event_source, summary); bonobo_property_bag_add (bag, "window_title", PROPERTY_TITLE, BONOBO_ARG_STRING, NULL, "The title of this component's window", 0); -- cgit v1.2.3