diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-08-25 18:26:28 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-08-25 18:26:28 +0800 |
commit | a47ca156207f3cebf4b6efb276db663def030763 (patch) | |
tree | 7605c632dbed3a4ee709fa302a10b50cfc175746 /calendar/gui/alarm-notify/notify-main.c | |
parent | 5ef810562c716cd4665a407b3c1015e600ea6e42 (diff) | |
download | gsoc2013-evolution-a47ca156207f3cebf4b6efb276db663def030763.tar gsoc2013-evolution-a47ca156207f3cebf4b6efb276db663def030763.tar.gz gsoc2013-evolution-a47ca156207f3cebf4b6efb276db663def030763.tar.bz2 gsoc2013-evolution-a47ca156207f3cebf4b6efb276db663def030763.tar.lz gsoc2013-evolution-a47ca156207f3cebf4b6efb276db663def030763.tar.xz gsoc2013-evolution-a47ca156207f3cebf4b6efb276db663def030763.tar.zst gsoc2013-evolution-a47ca156207f3cebf4b6efb276db663def030763.zip |
Fixes 313705
svn path=/trunk/; revision=30247
Diffstat (limited to 'calendar/gui/alarm-notify/notify-main.c')
-rw-r--r-- | calendar/gui/alarm-notify/notify-main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/calendar/gui/alarm-notify/notify-main.c b/calendar/gui/alarm-notify/notify-main.c index 1032f5b42b..b6f60222b5 100644 --- a/calendar/gui/alarm-notify/notify-main.c +++ b/calendar/gui/alarm-notify/notify-main.c @@ -44,6 +44,7 @@ #include "alarm-queue.h" #include "alarm-notify.h" #include "config-data.h" +#include <camel/camel-object.h> @@ -153,6 +154,11 @@ main (int argc, char **argv) g_idle_add ((GSourceFunc) init_alarm_service, NULL); + /* FIXME Ideally we should not use camel libraries in calendar, though it is the case + currently for attachments. Remove this once that is fixed. + Initialise global camel_object_type */ + camel_object_get_type(); + bonobo_main (); bonobo_object_unref (BONOBO_OBJECT (factory)); |