diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-02-01 01:58:24 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-03-25 02:55:24 +0800 |
commit | cef5a8ef5751c157817f3e132e3f0b18ce48d919 (patch) | |
tree | fc2a82f08682e7e011590b453f2977d63c3a479f /calendar/gui/alarm-notify/alarm-notify.h | |
parent | 5399f35bbce8f4e5775fa96b795c527002c48969 (diff) | |
download | gsoc2013-evolution-cef5a8ef5751c157817f3e132e3f0b18ce48d919.tar.gz gsoc2013-evolution-cef5a8ef5751c157817f3e132e3f0b18ce48d919.tar.zst gsoc2013-evolution-cef5a8ef5751c157817f3e132e3f0b18ce48d919.zip |
Port AlarmNotify to GtkApplication.
Diffstat (limited to 'calendar/gui/alarm-notify/alarm-notify.h')
-rw-r--r-- | calendar/gui/alarm-notify/alarm-notify.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/gui/alarm-notify/alarm-notify.h b/calendar/gui/alarm-notify/alarm-notify.h index b3fb47990a..de7e0398a6 100644 --- a/calendar/gui/alarm-notify/alarm-notify.h +++ b/calendar/gui/alarm-notify/alarm-notify.h @@ -26,6 +26,7 @@ #ifndef ALARM_NOTIFY_H #define ALARM_NOTIFY_H +#include <gtk/gtk.h> #include <libecal/e-cal.h> /* Standard GObject macros */ @@ -54,12 +55,12 @@ typedef struct _AlarmNotifyClass AlarmNotifyClass; typedef struct _AlarmNotifyPrivate AlarmNotifyPrivate; struct _AlarmNotify { - GObject parent; + GtkApplication parent; AlarmNotifyPrivate *priv; }; struct _AlarmNotifyClass { - GObjectClass parent_class; + GtkApplicationClass parent_class; }; GType alarm_notify_get_type (void); |