summaryrefslogtreecommitdiffstats
path: root/libkpimexchange
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-02-11 15:58:55 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-02-13 09:54:40 +0900
commit3f26d326c9bd8fbd60e5d89e20a705c87a837b1f (patch)
tree4f7a65469f9a686f2c9e28d34e90b9e12d7f0e17 /libkpimexchange
parentecde0bac61ec5d993f0ab1f240105bf32867a08b (diff)
downloadtdepim-3f26d326c9bd8fbd60e5d89e20a705c87a837b1f.tar.gz
tdepim-3f26d326c9bd8fbd60e5d89e20a705c87a837b1f.zip
Fixed FTBFS caused by migration to libical 3. The changes
are compatible with previous versions of libical. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 8996740084e6d31d323cfeb1a269f8427ff3f6bf)
Diffstat (limited to 'libkpimexchange')
-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 7e1cbadfe..4f0568c8c 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 );