diff options
author | Dan Winship <danw@src.gnome.org> | 2003-06-25 23:15:27 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-06-25 23:15:27 +0800 |
commit | cc6acbe24fdc73907845331b357f5ef48436f0d9 (patch) | |
tree | 235eb985eff98b475b18789916aec02eaef0516a /my-evolution | |
parent | 5ad4788a061c8111dce9284ba27d86635a21321f (diff) | |
download | gsoc2013-evolution-cc6acbe24fdc73907845331b357f5ef48436f0d9.tar gsoc2013-evolution-cc6acbe24fdc73907845331b357f5ef48436f0d9.tar.gz gsoc2013-evolution-cc6acbe24fdc73907845331b357f5ef48436f0d9.tar.bz2 gsoc2013-evolution-cc6acbe24fdc73907845331b357f5ef48436f0d9.tar.lz gsoc2013-evolution-cc6acbe24fdc73907845331b357f5ef48436f0d9.tar.xz gsoc2013-evolution-cc6acbe24fdc73907845331b357f5ef48436f0d9.tar.zst gsoc2013-evolution-cc6acbe24fdc73907845331b357f5ef48436f0d9.zip |
Don't call setup_calendar from here, since e_summary_calendar_init will
* e-summary-calendar.c (setup_gconf_client): Don't call
setup_calendar from here, since e_summary_calendar_init will call
it immediately after setup_gconf_client, which will result in a
calendar being quickly created and destroyed.
svn path=/trunk/; revision=21533
Diffstat (limited to 'my-evolution')
-rw-r--r-- | my-evolution/ChangeLog | 7 | ||||
-rw-r--r-- | my-evolution/e-summary-calendar.c | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index 4302a29e51..beae68e449 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,10 @@ +2003-06-23 Dan Winship <danw@ximian.com> + + * e-summary-calendar.c (setup_gconf_client): Don't call + setup_calendar from here, since e_summary_calendar_init will call + it immediately after setup_gconf_client, which will result in a + calendar being quickly created and destroyed. + 2003-06-19 Ettore Perazzoli <ettore@ximian.com> * e-summary.c (do_summary_print): Do not destroy preview_widget diff --git a/my-evolution/e-summary-calendar.c b/my-evolution/e-summary-calendar.c index de7c1d7bc6..6b7e04b593 100644 --- a/my-evolution/e-summary-calendar.c +++ b/my-evolution/e-summary-calendar.c @@ -577,8 +577,6 @@ setup_gconf_client (ESummary *summary) gconf_client_add_dir (calendar->gconf_client, "/apps/evolution/calendar", FALSE, NULL); gconf_client_add_dir (calendar->gconf_client, "/apps/evolution/shell/default_folders", FALSE, NULL); - - setup_calendar (summary); } void |