diff options
author | Eike Rathke <erack@redhat.com> | 2017-12-18 20:38:59 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-12-19 13:10:08 +0100 |
commit | 7c46e0086802c22f5a5040d9161d4d2b3b2a3aff (patch) | |
tree | 407a4d23370ac0aa5c58b3e7044b7d55fc190bf5 | |
parent | ad3b7c27cdc957a8a38876c040e86a81c3cf7003 (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>
-rw-r--r-- | lotuswordpro/source/filter/localtime.cxx | 2 |
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; |