Commit cd85db1d11be5f526c0a52737022c849431a6e23

  • avatar
  • Sergey 'Jin' Bostandzhyan <jin @deve…per.digitalstrom.org>
  • Sun Aug 08 16:40:23 CEST 2010
ICal related fix

Removed the fromUTC() call because all our calculations and settings are
in UTC already.
core/datetools.cpp
(1 / 1)
  
386386
387387 struct tm tm;
388388 ical_to_tm(icalTime, tm);
389 current = DateTime::fromUTC(mktime(&tm));
389 current = DateTime(tm);
390390 } while(current.before(_from));
391391 icalrecur_iterator_free(it);
392392 it = NULL;