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;