Fixes 313705
svn path=/trunk/; revision=30247
This commit is contained in:
@ -1,3 +1,10 @@
|
||||
2005-08-24 Chenthill Palanisamy <pchenthill@novell.com>
|
||||
|
||||
Fixes #313705
|
||||
* gui/alarm-notify/Makefile.am: Added CAMEL_LIBS.
|
||||
* gui/alarm-notify/notify-main.c: (main): Initialize
|
||||
the camel object.
|
||||
|
||||
2005-08-23 Not Zed <NotZed@Ximian.com>
|
||||
|
||||
* gui/e-cal-config.h: source-type is an enum not a pointer!
|
||||
|
||||
@ -50,6 +50,7 @@ evolution_alarm_notify_LDADD = \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/widgets/misc/libemiscwidgets.la \
|
||||
$(top_builddir)/calendar/common/libevolution-calendarprivate.la \
|
||||
$(CAMEL_LIBS) \
|
||||
$(EVOLUTION_CALENDAR_LIBS)
|
||||
|
||||
server_in_files = GNOME_Evolution_Calendar_AlarmNotify.server.in.in
|
||||
|
||||
@ -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));
|
||||
|
||||
Reference in New Issue
Block a user