diff options
author | JP Rosevear <jpr@ximian.com> | 2003-04-02 00:48:58 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-04-02 00:48:58 +0800 |
commit | 5cda225087bfdc66e19edb703689e8af655e171c (patch) | |
tree | d243d40869611841f49871fdcddc841cc9e3fc92 | |
parent | b8d68c6688de833d72742a6239e57c3970ab7114 (diff) | |
download | gsoc2013-evolution-5cda225087bfdc66e19edb703689e8af655e171c.tar gsoc2013-evolution-5cda225087bfdc66e19edb703689e8af655e171c.tar.gz gsoc2013-evolution-5cda225087bfdc66e19edb703689e8af655e171c.tar.bz2 gsoc2013-evolution-5cda225087bfdc66e19edb703689e8af655e171c.tar.lz gsoc2013-evolution-5cda225087bfdc66e19edb703689e8af655e171c.tar.xz gsoc2013-evolution-5cda225087bfdc66e19edb703689e8af655e171c.tar.zst gsoc2013-evolution-5cda225087bfdc66e19edb703689e8af655e171c.zip |
Fix for #17231 (Evo portion)
2003-04-01 JP Rosevear <jpr@ximian.com>
Fix for #17231 (Evo portion)
* conduits/todo/todo-conduit.c (comp_from_remote_record): test
for
secret flag properly
* conduits/calendar/calendar-conduit.c
(comp_from_remote_record):
ditto
svn path=/trunk/; revision=20612
-rw-r--r-- | calendar/ChangeLog | 10 | ||||
-rw-r--r-- | calendar/conduits/calendar/calendar-conduit.c | 2 | ||||
-rw-r--r-- | calendar/conduits/todo/todo-conduit.c | 2 |
3 files changed, 12 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 5007f75489..89682e69c6 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,13 @@ +2003-04-01 JP Rosevear <jpr@ximian.com> + + Fix for #17231 (Evo portion) + + * conduits/todo/todo-conduit.c (comp_from_remote_record): test for + secret flag properly + + * conduits/calendar/calendar-conduit.c (comp_from_remote_record): + ditto + 2003-04-01 Rodrigo Moya <rodrigo@ximian.com> * importers/icalendar-importer.c (load_file_fn, vcal_load_file_fn): diff --git a/calendar/conduits/calendar/calendar-conduit.c b/calendar/conduits/calendar/calendar-conduit.c index 80ef758edd..5358605826 100644 --- a/calendar/conduits/calendar/calendar-conduit.c +++ b/calendar/conduits/calendar/calendar-conduit.c @@ -1264,7 +1264,7 @@ comp_from_remote_record (GnomePilotConduitSyncAbs *conduit, cal_component_set_transparency (comp, CAL_COMPONENT_TRANSP_NONE); - if (remote->attr & dlpRecAttrSecret) + if (remote->secret) cal_component_set_classification (comp, CAL_COMPONENT_CLASS_PRIVATE); else cal_component_set_classification (comp, CAL_COMPONENT_CLASS_PUBLIC); diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c index c61f79f7d0..a07ed35706 100644 --- a/calendar/conduits/todo/todo-conduit.c +++ b/calendar/conduits/todo/todo-conduit.c @@ -805,7 +805,7 @@ comp_from_remote_record (GnomePilotConduitSyncAbs *conduit, cal_component_set_priority (comp, &priority); cal_component_set_transparency (comp, CAL_COMPONENT_TRANSP_NONE); - if (remote->attr & dlpRecAttrSecret) + if (remote->secret) cal_component_set_classification (comp, CAL_COMPONENT_CLASS_PRIVATE); else cal_component_set_classification (comp, CAL_COMPONENT_CLASS_PUBLIC); |