From 25c8b2416833c6c95a57b7f1f8402d2e280892a1 Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Thu, 12 Oct 2000 00:19:13 +0000 Subject: Disable executive-summary svn path=/trunk/; revision=5874 --- calendar/ChangeLog | 4 ++++ calendar/gui/Makefile.am | 5 +---- calendar/gui/calendar-component.c | 10 +++++++++- calendar/gui/calendar-summary.c | 4 ++-- calendar/gui/component-factory.c | 10 +++++++++- 5 files changed, 25 insertions(+), 8 deletions(-) (limited to 'calendar') diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 954bcea954..020e228ca8 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,7 @@ +2000-10-12 Iain Holmes + + * gui/component-factory.c: Disable the executive summary. + 2000-10-11 JP Rosevear * pcs/cal-backend.c (cal_backend_log_entry): Take CalObjType diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am index 191273eded..de1f72b2c6 100644 --- a/calendar/gui/Makefile.am +++ b/calendar/gui/Makefile.am @@ -33,8 +33,7 @@ LINK_FLAGS = \ $(top_builddir)/widgets/misc/libemiscwidgets.a \ $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/libversit/libversit.la \ - $(top_builddir)/libical/src/libical/libical.a \ - $(top_builddir)/executive-summary/evolution-services/libevolution-services.la + $(top_builddir)/libical/src/libical/libical.a gladedir = $(datadir)/evolution/glade @@ -54,8 +53,6 @@ evolution_calendar_SOURCES = \ calendar-commands.h \ calendar-model.c \ calendar-model.h \ - calendar-summary.c \ - calendar-summary.h \ control-factory.c \ control-factory.h \ component-factory.c \ diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index d45db48584..e5fb4c65a0 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -24,7 +24,9 @@ #include #include #include "evolution-shell-component.h" +#ifdef WANT_THE_EXECUTIVE_SUMMARY #include +#endif #include "component-factory.h" #include "control-factory.h" #include "calendar-config.h" @@ -108,6 +110,7 @@ factory_fn (BonoboGenericFactory *factory, return BONOBO_OBJECT (shell_component); } +#ifdef WANT_THE_EXECUTIVE_SUMMARY static BonoboObject * summary_fn (BonoboGenericFactory *factory, void *closure) @@ -120,6 +123,7 @@ summary_fn (BonoboGenericFactory *factory, evolution_dir); return BONOBO_OBJECT (summary_component); } +#endif void @@ -129,11 +133,15 @@ component_factory_init (void) return; factory = bonobo_generic_factory_new (COMPONENT_FACTORY_ID, factory_fn, NULL); - summary_factory = bonobo_generic_factory_new (SUMMARY_FACTORY_ID, summary_fn, NULL); +#ifdef WANT_THE_EXECUTIVE_SUMMARY + summary_factory = bonobo_generic_factory_new (SUMMARY_FACTORY_ID, summary_fn, NULL); +#endif if (factory == NULL) g_error ("Cannot initialize Evolution's calendar component."); +#ifdef WANT_THE_EXECUTIVE_SUMMARY if (summary_factory == NULL) g_error ("Cannot initialize Evolution's calendar summary component."); +#endif } diff --git a/calendar/gui/calendar-summary.c b/calendar/gui/calendar-summary.c index 9ce8c70dbb..0c05ace30a 100644 --- a/calendar/gui/calendar-summary.c +++ b/calendar/gui/calendar-summary.c @@ -93,7 +93,7 @@ cal_loaded (CalClient *client, g_free (html); } else { g_print ("Error loading %d\n", status); - executive_summary_component_update (summary->component, ""); + executive_summary_component_update (summary->component, " "); } } @@ -131,5 +131,5 @@ create_summary_view (ExecutiveSummaryComponent *component, gtk_signal_connect (GTK_OBJECT (summary->client), "cal_loaded", GTK_SIGNAL_FUNC (cal_loaded), summary); - return g_strdup (""); + return g_strdup (" "); } diff --git a/calendar/gui/component-factory.c b/calendar/gui/component-factory.c index d45db48584..e5fb4c65a0 100644 --- a/calendar/gui/component-factory.c +++ b/calendar/gui/component-factory.c @@ -24,7 +24,9 @@ #include #include #include "evolution-shell-component.h" +#ifdef WANT_THE_EXECUTIVE_SUMMARY #include +#endif #include "component-factory.h" #include "control-factory.h" #include "calendar-config.h" @@ -108,6 +110,7 @@ factory_fn (BonoboGenericFactory *factory, return BONOBO_OBJECT (shell_component); } +#ifdef WANT_THE_EXECUTIVE_SUMMARY static BonoboObject * summary_fn (BonoboGenericFactory *factory, void *closure) @@ -120,6 +123,7 @@ summary_fn (BonoboGenericFactory *factory, evolution_dir); return BONOBO_OBJECT (summary_component); } +#endif void @@ -129,11 +133,15 @@ component_factory_init (void) return; factory = bonobo_generic_factory_new (COMPONENT_FACTORY_ID, factory_fn, NULL); - summary_factory = bonobo_generic_factory_new (SUMMARY_FACTORY_ID, summary_fn, NULL); +#ifdef WANT_THE_EXECUTIVE_SUMMARY + summary_factory = bonobo_generic_factory_new (SUMMARY_FACTORY_ID, summary_fn, NULL); +#endif if (factory == NULL) g_error ("Cannot initialize Evolution's calendar component."); +#ifdef WANT_THE_EXECUTIVE_SUMMARY if (summary_factory == NULL) g_error ("Cannot initialize Evolution's calendar summary component."); +#endif } -- cgit v1.2.3