aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-util/cal-util.h
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/cal-util/cal-util.h')
-rw-r--r--calendar/cal-util/cal-util.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/calendar/cal-util/cal-util.h b/calendar/cal-util/cal-util.h
index 243cc34105..c587be5568 100644
--- a/calendar/cal-util/cal-util.h
+++ b/calendar/cal-util/cal-util.h
@@ -42,13 +42,14 @@ typedef struct {
void cal_obj_instance_list_free (GList *list);
typedef enum {
- CALOBJ_UPDATED = 1 << 0,
- CALOBJ_REMOVED = 1 << 1
+ CALOBJ_ADDED = 1 << 0,
+ CALOBJ_MODIFIED = 1 << 1,
+ CALOBJ_DELETED = 1 << 2
} CalObjChangeType;
typedef struct
{
- char *uid;
+ char *calobj;
CalObjChangeType type;
} CalObjChange;