diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-11-03 14:10:31 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-11-03 21:56:53 +0100 |
commit | ba1dc6fcb9f5df0b397effb20e2f58bb8c734879 (patch) | |
tree | ecdd7a7dd59213ac17a1c3b9cdb78b2cbecb8595 /i18npool/source | |
parent | 874af0da643e48fb2a2825be48261819ff53962d (diff) |
presumably 'true' is sufficient in all cases
Change-Id: I9366193085a4c46ef64f0a9660e51b8678ca35f9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105252
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'i18npool/source')
-rw-r--r-- | i18npool/source/calendar/calendar_gregorian.cxx | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/i18npool/source/calendar/calendar_gregorian.cxx b/i18npool/source/calendar/calendar_gregorian.cxx index f05fc96009ca..1da80995b1d1 100644 --- a/i18npool/source/calendar/calendar_gregorian.cxx +++ b/i18npool/source/calendar/calendar_gregorian.cxx @@ -360,13 +360,7 @@ Calendar_gregorian::setLocalDateTime( double fTimeInDays ) "Calendar_gregorian::setLocalDateTime: " << std::fixed << fM << " rounded to " << fR); int32_t nZoneOffset, nDSTOffset; UErrorCode status = U_ZERO_ERROR; - body->getTimeZone().getOffset( fR, -#if U_ICU_VERSION_MAJOR_NUM >= 68 - true, -#else - TRUE, -#endif - nZoneOffset, nDSTOffset, status ); + body->getTimeZone().getOffset( fR, true, nZoneOffset, nDSTOffset, status ); if ( !U_SUCCESS(status) ) throw ERROR; status = U_ZERO_ERROR; |