aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-util
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-02-06 07:15:15 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-02-06 07:15:15 +0800
commit10dc371c4dff697da4d1eb7d45c237fb4ba5043e (patch)
tree8cc2cead79cb5413bad3bde22d5611c27fe98820 /calendar/cal-util
parent8634c7a4ecc6d1e41fab52fc3e83333fff6bd6bd (diff)
downloadgsoc2013-evolution-10dc371c4dff697da4d1eb7d45c237fb4ba5043e.tar
gsoc2013-evolution-10dc371c4dff697da4d1eb7d45c237fb4ba5043e.tar.gz
gsoc2013-evolution-10dc371c4dff697da4d1eb7d45c237fb4ba5043e.tar.bz2
gsoc2013-evolution-10dc371c4dff697da4d1eb7d45c237fb4ba5043e.tar.lz
gsoc2013-evolution-10dc371c4dff697da4d1eb7d45c237fb4ba5043e.tar.xz
gsoc2013-evolution-10dc371c4dff697da4d1eb7d45c237fb4ba5043e.tar.zst
gsoc2013-evolution-10dc371c4dff697da4d1eb7d45c237fb4ba5043e.zip
get the new reminder widgets (sync_entries): different callback data
2001-02-05 JP Rosevear <jpr@ximian.com> * gui/event-editor.c (get_widgets): get the new reminder widgets (sync_entries): different callback data (summary_changed_cb): take different data and handle various cases (init_widgets): connect signals for the new widgets (get_alarm_duration_string): give a text string of the alarm duration (get_alarm_string): give a string representing the alarm (fill_widgets): make sure we don't loop infinitely and remove old alarm cruft (reminder_to_comp_object): dump alarm info in the gui into the cal component (append_alarm): add alarm to the clist (reminder_add_cb): create new alarm (reminder_delete_cb): remove the alarm from the list * gui/event-editor-dialog.glade: Update gui * gui/e-calendar-table.c: include gnome.h for all the menu stuff * gui/calendar-summary.c: for internationalization * gui/tasks-control.c: include gnome.h * gui/e-tasks.c: ditto * gui/e-itip-control.c: ditto * cal-util/cal-recur.c (cal_recur_set_rule_end_date): Update for libical changes svn path=/trunk/; revision=8003
Diffstat (limited to 'calendar/cal-util')
-rw-r--r--calendar/cal-util/cal-component.c6
-rw-r--r--calendar/cal-util/cal-component.h1
2 files changed, 7 insertions, 0 deletions
diff --git a/calendar/cal-util/cal-component.c b/calendar/cal-util/cal-component.c
index 100af1d77e..5cba22a635 100644
--- a/calendar/cal-util/cal-component.c
+++ b/calendar/cal-util/cal-component.c
@@ -3644,6 +3644,12 @@ cal_component_get_alarm (CalComponent *comp, const char *auid)
return NULL;
}
+void
+cal_component_free_alarm_uids (GList *alarm_uids)
+{
+
+}
+
/**
* cal_component_alarms_free:
* @alarms: Component alarms structure.
diff --git a/calendar/cal-util/cal-component.h b/calendar/cal-util/cal-component.h
index 97b518dfe2..b912c04e9e 100644
--- a/calendar/cal-util/cal-component.h
+++ b/calendar/cal-util/cal-component.h
@@ -332,6 +332,7 @@ void cal_component_remove_alarm (CalComponent *comp, const char *auid);
GList *cal_component_get_alarm_uids (CalComponent *comp);
CalComponentAlarm *cal_component_get_alarm (CalComponent *comp, const char *auid);
+void cal_component_free_alarm_uids (GList *alarm_uids);
void cal_component_alarms_free (CalComponentAlarms *alarms);