diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2004-02-04 20:36:13 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-02-04 20:36:13 +0800 |
commit | 356697e42c851abc93a60534246e92b245e35d8a (patch) | |
tree | 9edeadba8fe1f0d475ef5ad1262840a1e2c0c653 /calendar/gui/alarm-notify/alarm-notify.h | |
parent | c92c8d466dc18ea950965e476eb21bae95347eb8 (diff) | |
download | gsoc2013-evolution-356697e42c851abc93a60534246e92b245e35d8a.tar.gz gsoc2013-evolution-356697e42c851abc93a60534246e92b245e35d8a.tar.zst gsoc2013-evolution-356697e42c851abc93a60534246e92b245e35d8a.zip |
Fixes #52970
2004-02-04 Rodrigo Moya <rodrigo@ximian.com>
Fixes #52970
* idl/evolution-calendar.idl: added back the AlarmNotify interface.
* gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in:
changed to have the AlarmNotify component be created via a factory.
* gui/alarm-notify/alarm-notify.[ch]: converted to implement the
AlarmNotify interface.
* gui/alarm-notify/notify-main.c (main): register the factory with
bonobo_generic_factory_new, not the object itself. Removed redundant
call to bonobo_object_unref. Call e_passwords_shutdown on exit.
* gui/alarm-notify/config-data.c (config_data_get_calendars_to_load):
get only the selected calendars/task lists.
svn path=/trunk/; revision=24613
Diffstat (limited to 'calendar/gui/alarm-notify/alarm-notify.h')
-rw-r--r-- | calendar/gui/alarm-notify/alarm-notify.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/calendar/gui/alarm-notify/alarm-notify.h b/calendar/gui/alarm-notify/alarm-notify.h index 418ae23878..c4a351d818 100644 --- a/calendar/gui/alarm-notify/alarm-notify.h +++ b/calendar/gui/alarm-notify/alarm-notify.h @@ -22,7 +22,8 @@ #ifndef ALARM_NOTIFY_H #define ALARM_NOTIFY_H -#include <glib-object.h> +#include <bonobo/bonobo-object.h> +#include "evolution-calendar.h" @@ -39,14 +40,15 @@ typedef struct _AlarmNotifyClass AlarmNotifyClass; typedef struct _AlarmNotifyPrivate AlarmNotifyPrivate; struct _AlarmNotify { - GObject object; + BonoboObject object; /* Private data */ AlarmNotifyPrivate *priv; }; struct _AlarmNotifyClass { - GObjectClass parent_class; + BonoboObjectClass parent_class; + POA_GNOME_Evolution_Calendar_AlarmNotify__epv epv; }; GType alarm_notify_get_type (void); |