CVS commit by tilladam: Hm, this was fixed in HEAD, it seems. M +1 -1 incidence.cpp 1.1.2.31 --- kdepim/kresources/kolab/kcal/incidence.cpp #1.1.2.30:1.1.2.31 @@ -531,5 +531,5 @@ void Incidence::setRecurrence( KCal::Rec mRecurrence.type = "monthday"; QPtrList rmd = recur->monthDays(); - int day = !rmd.isEmpty() ? day = *rmd.first() : day = recur->parent()->dtStart().date().day(); + int day = !rmd.isEmpty() ? *rmd.first() : recur->parent()->dtStart().date().day(); mRecurrence.dayNumber = QString::number( day ); QPtrList months = recur->yearNums();