aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/conduits
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2003-04-02 00:48:58 +0800
committerJP Rosevear <jpr@src.gnome.org>2003-04-02 00:48:58 +0800
commit5cda225087bfdc66e19edb703689e8af655e171c (patch)
treed243d40869611841f49871fdcddc841cc9e3fc92 /calendar/conduits
parentb8d68c6688de833d72742a6239e57c3970ab7114 (diff)
downloadgsoc2013-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
Diffstat (limited to 'calendar/conduits')
-rw-r--r--calendar/conduits/calendar/calendar-conduit.c2
-rw-r--r--calendar/conduits/todo/todo-conduit.c2
2 files changed, 2 insertions, 2 deletions
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);