From kde-commits Wed Sep 29 08:43:55 2004 From: Adriaan de Groot Date: Wed, 29 Sep 2004 08:43:55 +0000 To: kde-commits Subject: kdepim/kpilot/conduits/vcalconduit Message-Id: <20040929084355.74670126E1 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=109644744609177 CVS commit by adridg: Deal with libkcal bug where new incidences are not marked with SYNCMOD -- look for incidences that have not been synced to the Pilot at all. M +2 -2 vcal-conduit.cc 1.105 --- kdepim/kpilot/conduits/vcalconduit/vcal-conduit.cc #1.104:1.105 @@ -139,5 +139,5 @@ KCal::Incidence *VCalConduitPrivate::get } while ( fAllEventsIterator != fAllEvents.end() && - e && e->syncStatus()==KCal::Incidence::SYNCNONE) + e && e->syncStatus()==KCal::Incidence::SYNCNONE && e->pilotId() > 0) { ++fAllEventsIterator;