Checked in patch for bug 182880: [patch] multi day, all day events are not saved into ical file.

This commit is contained in:
mostafah%oeone.com 2002-12-02 18:08:22 +00:00
Родитель 94b5723969
Коммит 576f9a918c
1 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -2353,10 +2353,8 @@ icalcomponent* oeICalEventImpl::AsIcalComponent()
m_end->SetHour( 23 );
m_end->SetMinute( 59 );
}
if( !m_allday ) { //Include end-date only if this is not an all day event
prop = icalproperty_new_dtend( m_end->m_datetime );
icalcomponent_add_property( vevent, prop );
}
prop = icalproperty_new_dtend( m_end->m_datetime );
icalcomponent_add_property( vevent, prop );
}
if( m_stamp && !icaltime_is_null_time( m_stamp->m_datetime ) ) {