libical-deprecated.patch 850 B

1234567891011121314
  1. --- abiword-3.0.2/src/text/ptbl/xp/pd_DocumentRDF.cpp.orig 2015-04-02 03:09:20.000000000 +0000
  2. +++ abiword-3.0.2/src/text/ptbl/xp/pd_DocumentRDF.cpp 2017-11-19 22:57:49.533304878 +0000
  3. @@ -2269,8 +2269,8 @@
  4. icalcomponent_set_uid( c, m_uid.c_str() );
  5. icalcomponent_set_location( c, m_location.c_str() );
  6. icalcomponent_set_description( c, m_desc.c_str() );
  7. - icalcomponent_set_dtstart( c, icaltime_from_timet( m_dtstart, 0 ) );
  8. - icalcomponent_set_dtend( c, icaltime_from_timet( m_dtend, 0 ) );
  9. + icalcomponent_set_dtstart( c, icaltime_from_timet_with_zone( m_dtstart, 0, 0 ) );
  10. + icalcomponent_set_dtend( c, icaltime_from_timet_with_zone( m_dtend, 0, 0 ) );
  11. char* data = icalcomponent_as_ical_string( c );
  12. std::ofstream oss( filename.c_str() );