aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-summary.c
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2000-12-27 07:42:43 +0800
committerIain Holmes <iain@src.gnome.org>2000-12-27 07:42:43 +0800
commit138e45cc665e70e637652eca1cae64ddf7e3b979 (patch)
treeae8edd258b5b9ebc9d634d917c6e133b6a545a72 /calendar/gui/calendar-summary.c
parentc1527a0f74533dd131576fcfc7b23188ff1466ba (diff)
downloadgsoc2013-evolution-138e45cc665e70e637652eca1cae64ddf7e3b979.tar
gsoc2013-evolution-138e45cc665e70e637652eca1cae64ddf7e3b979.tar.gz
gsoc2013-evolution-138e45cc665e70e637652eca1cae64ddf7e3b979.tar.bz2
gsoc2013-evolution-138e45cc665e70e637652eca1cae64ddf7e3b979.tar.lz
gsoc2013-evolution-138e45cc665e70e637652eca1cae64ddf7e3b979.tar.xz
gsoc2013-evolution-138e45cc665e70e637652eca1cae64ddf7e3b979.tar.zst
gsoc2013-evolution-138e45cc665e70e637652eca1cae64ddf7e3b979.zip
New BonoboPropertyEventless stuff
pt 1 svn path=/trunk/; revision=7177
Diffstat (limited to 'calendar/gui/calendar-summary.c')
-rw-r--r--calendar/gui/calendar-summary.c8
1 files changed, 6 insertions, 2 deletions
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);