summaryrefslogtreecommitdiffstats
path: root/libkpimexchange/core/utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkpimexchange/core/utils.cpp')
-rw-r--r--libkpimexchange/core/utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libkpimexchange/core/utils.cpp b/libkpimexchange/core/utils.cpp
index 7e1cbadf..4f0568c8 100644
--- a/libkpimexchange/core/utils.cpp
+++ b/libkpimexchange/core/utils.cpp
@@ -56,7 +56,7 @@ TQDateTime utcAsZone( const TQDateTime& utc, const TQString& timeZoneId )
TQDateTime epoch;
epoch.setTime_t( 0 );
time_t v = epoch.secsTo( utc );
- struct icaltimetype tt = icaltime_from_timet( v, 0 ); // 0: is_date=false
+ struct icaltimetype tt = icaltime_from_timet_with_zone( v, 0, NULL );
int offset = icaltimezone_get_utc_offset(
icaltimezone_get_builtin_timezone( timeZoneId.latin1() ),
&tt, &daylight );
@@ -72,7 +72,7 @@ TQDateTime zoneAsUtc( const TQDateTime& zone, const TQString& timeZoneId )
TQDateTime epoch;
epoch.setTime_t( 0 );
time_t v = epoch.secsTo( zone );
- struct icaltimetype tt = icaltime_from_timet( v, 0 ); // 0: is_date=false
+ struct icaltimetype tt = icaltime_from_timet_with_zone( v, 0, NULL );
int offset = icaltimezone_get_utc_offset(
icaltimezone_get_builtin_timezone( timeZoneId.latin1() ),
&tt, &daylight );