summaryrefslogtreecommitdiffstats
path: root/conduits/vcalconduit/vcal-conduit.cc
diff options
context:
space:
mode:
Diffstat (limited to 'conduits/vcalconduit/vcal-conduit.cc')
-rw-r--r--conduits/vcalconduit/vcal-conduit.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/conduits/vcalconduit/vcal-conduit.cc b/conduits/vcalconduit/vcal-conduit.cc
index 52bd759..4b82f16 100644
--- a/conduits/vcalconduit/vcal-conduit.cc
+++ b/conduits/vcalconduit/vcal-conduit.cc
@@ -155,7 +155,7 @@ KCal::Incidence *VCalConduitPrivate::getNextModifiedIncidence()
if ( fAllEventsIterator != fAllEvents.end() ) e = *fAllEventsIterator;
// Then walk the list until we find an unsynced entry
while ( fAllEventsIterator != fAllEvents.end() &&
- e && e->synctqStatus()!=KCal::Incidence::SYNCMOD && e->pilotId() > 0)
+ e && e->syncStatus()!=KCal::Incidence::SYNCMOD && e->pilotId() > 0)
{
e = (++fAllEventsIterator != fAllEvents.end()) ? *fAllEventsIterator : 0L;
}