summaryrefslogtreecommitdiffstats
path: root/tderesources
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-11 20:14:42 +0900
commit8996740084e6d31d323cfeb1a269f8427ff3f6bf (patch)
tree992adcaf90951b2f70cb4b86b067c4a5b6835a53 /tderesources
parent4767f333ca8a7997b4c4f9ec3f2f4fdb6e59d7ea (diff)
downloadtdepim-8996740084e6d31d323cfeb1a269f8427ff3f6bf.tar.gz
tdepim-8996740084e6d31d323cfeb1a269f8427ff3f6bf.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>
Diffstat (limited to 'tderesources')
-rw-r--r--tderesources/lib/webdavhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tderesources/lib/webdavhandler.cpp b/tderesources/lib/webdavhandler.cpp
index fea7a0b16..af5eb2767 100644
--- a/tderesources/lib/webdavhandler.cpp
+++ b/tderesources/lib/webdavhandler.cpp
@@ -186,7 +186,7 @@ TQDateTime WebdavHandler::zoneAsUtc( const TQDateTime& zone, const TQString& tim
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 );