Details
Description
Passing a maxcount argument into QOrganizerManager::itemOccurrences() gives the wrong result on Symbian.
I get one organizer item returned if I call the following:
QList<QOrganizerItem> futureOccurrences = m_manager->itemOccurrences(item, QDateTime::currentDateTime(), QDateTime::currentDateTime().addDays(365), 4); //maxCount = 4
If I call the same method but do not specify a maxCount (i.e. it defaults to -1), I get 261 item occurrences (i.e. more than 4 items exist, so the original call should have been able to return 4).