SVN commit 466509 by tstaerk: Qt4 has a lot less implicit type conversions -> fix compile M +2 -2 incidenceconverter.cpp --- trunk/KDE/kdepim/kresources/groupwise/soap/incidenceconverter.cpp #466508:466509 @@ -68,10 +68,10 @@ event->setFloats( true ); if ( appointment->startDay != 0 ) - event->setDtStart( QDate::fromString( QString::fromUtf8( appointment->startDay->c_str() ), Qt::ISODate ) ); + event->setDtStart( QDateTime::fromString( QString::fromUtf8( appointment->startDay->c_str() ), Qt::ISODate ) ); if ( appointment->endDay != 0 ) - event->setDtEnd( QDate::fromString( QString::fromUtf8( appointment->endDay->c_str() ), Qt::ISODate ).addDays( -1 ) ); + event->setDtEnd( QDateTime::fromString( QString::fromUtf8( appointment->endDay->c_str() ), Qt::ISODate ).addDays( -1 ) ); kdDebug() << " all day event." << endl; } else