diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-03-11 07:13:27 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-03-11 07:13:27 +0800 |
commit | 8c65f8861bd16321eeafac1d827d1fb4a557247c (patch) | |
tree | e035dedcf07dc165cff3996948706b8031e1327e /calendar/pcs | |
parent | 113e9a4257b7bba09996f891f97e525d535f1af4 (diff) | |
download | gsoc2013-evolution-8c65f8861bd16321eeafac1d827d1fb4a557247c.tar gsoc2013-evolution-8c65f8861bd16321eeafac1d827d1fb4a557247c.tar.gz gsoc2013-evolution-8c65f8861bd16321eeafac1d827d1fb4a557247c.tar.bz2 gsoc2013-evolution-8c65f8861bd16321eeafac1d827d1fb4a557247c.tar.lz gsoc2013-evolution-8c65f8861bd16321eeafac1d827d1fb4a557247c.tar.xz gsoc2013-evolution-8c65f8861bd16321eeafac1d827d1fb4a557247c.tar.zst gsoc2013-evolution-8c65f8861bd16321eeafac1d827d1fb4a557247c.zip |
Initialize the alarm types here. Do not call default_alarm() anymore,
2000-03-10 Federico Mena Quintero <federico@helixcode.com>
* cal-util/calobj.c (ical_new): Initialize the alarm types here.
Do not call default_alarm() anymore, since that is a GUI issue.
(default_alarm): Removed function.
(alarm_defaults): Removed defaults data.
* pcs/tlacuache.c (calendar_notify): Removed stubs for
alarm_defaults, calendar_notify(), debug_alarms.
svn path=/trunk/; revision=2095
Diffstat (limited to 'calendar/pcs')
-rw-r--r-- | calendar/pcs/tlacuache.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/calendar/pcs/tlacuache.c b/calendar/pcs/tlacuache.c index 35bb585862..f5dd3d233c 100644 --- a/calendar/pcs/tlacuache.c +++ b/calendar/pcs/tlacuache.c @@ -28,27 +28,6 @@ -/* Stuff that the un-converted alarm code needs to build */ - -int debug_alarms = FALSE; - -void calendar_notify (time_t time, CalendarAlarm *which, void *data); - -CalendarAlarm alarm_defaults[4] = { - { ALARM_MAIL, 0, 15, ALARM_MINUTES }, - { ALARM_PROGRAM, 0, 15, ALARM_MINUTES }, - { ALARM_DISPLAY, 0, 15, ALARM_MINUTES }, - { ALARM_AUDIO, 0, 15, ALARM_MINUTES } -}; - -void -calendar_notify (time_t time, CalendarAlarm *which, void *data) -{ - g_error ("calendar_notify() called!"); -} - - - /* Callback used when the calendar factory is destroyed */ static void factory_destroy_cb (GtkObject *object, gpointer data) |