diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-12-08 04:20:20 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-12-08 04:20:20 +0800 |
commit | 5d72cc436798683b1dec3756866fbedf02f49032 (patch) | |
tree | 3096b2627ada9cf16ec9e02ebe43e91d3f82b8b8 /calendar/idl | |
parent | 9d8e2d650430889cbc3efd680f699c922ca1db4c (diff) | |
download | gsoc2013-evolution-5d72cc436798683b1dec3756866fbedf02f49032.tar gsoc2013-evolution-5d72cc436798683b1dec3756866fbedf02f49032.tar.gz gsoc2013-evolution-5d72cc436798683b1dec3756866fbedf02f49032.tar.bz2 gsoc2013-evolution-5d72cc436798683b1dec3756866fbedf02f49032.tar.lz gsoc2013-evolution-5d72cc436798683b1dec3756866fbedf02f49032.tar.xz gsoc2013-evolution-5d72cc436798683b1dec3756866fbedf02f49032.tar.zst gsoc2013-evolution-5d72cc436798683b1dec3756866fbedf02f49032.zip |
Create an empty cal component if the object has been deleted.
2000-12-07 JP Rosevear <jpr@helixcode.com>
* pcs/cal-backend.c (cal_backend_compute_changes_foreach_key): Create
an empty cal component if the object has been deleted.
* idl/evolution-calendar.idl: Bit shift the change type constants
properly
svn path=/trunk/; revision=6843
Diffstat (limited to 'calendar/idl')
-rw-r--r-- | calendar/idl/evolution-calendar.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/idl/evolution-calendar.idl b/calendar/idl/evolution-calendar.idl index 89926386e2..bee377c76a 100644 --- a/calendar/idl/evolution-calendar.idl +++ b/calendar/idl/evolution-calendar.idl @@ -37,8 +37,8 @@ module Calendar { /* Types of object changes made */ typedef long CalObjChangeType; const CalObjChangeType ADDED = 1 << 0; - const CalObjChangeType MODIFIED = 1 << 0; - const CalObjChangeType DELETED = 1 << 1; + const CalObjChangeType MODIFIED = 1 << 1; + const CalObjChangeType DELETED = 1 << 2; /* Types of alarms */ enum AlarmType { |