summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2017-12-18 20:38:59 +0100
committerAndras Timar <andras.timar@collabora.com>2018-07-02 10:52:32 +0200
commit511ee4354f33b9db5a741af7d56c001a3cb016b3 (patch)
tree6385958b9cff3366bc843936b59e646ff7a163ae /lotuswordpro
parent8714906f5430525027bcfb84b90eb5b80e512c8c (diff)
Explicitly qualify ICU types with icu:: namespace
It will be required by ICU 61 anyway, see https://ssl.icu-project.org/repos/icu/trunk/icu4c/readme.html#RecBuild Change-Id: If7f1330550981fd28eb7eea6329f21e116291cca Reviewed-on: https://gerrit.libreoffice.org/46740 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com> Reviewed-on: https://gerrit.libreoffice.org/56779 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com> (cherry picked from commit 3aabc93b8a3f55eb0a3f9e413b124fd8deab7e47)
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/localtime.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/localtime.cxx b/lotuswordpro/source/filter/localtime.cxx
index 47d202412724..3805c5d6f973 100644
--- a/lotuswordpro/source/filter/localtime.cxx
+++ b/lotuswordpro/source/filter/localtime.cxx
@@ -174,7 +174,7 @@ bool LtgLocalTime(long rtime,LtTm& rtm)
if ((rtime > 3 * DAY_SEC)&&(rtime < LONG_MAX - 3 * DAY_SEC))
{
- TimeZone* pLocalZone = TimeZone::createDefault();
+ icu::TimeZone* pLocalZone = icu::TimeZone::createDefault();
long offset = (pLocalZone->getRawOffset())/1000;
delete pLocalZone;
long ltime = rtime + offset;