diff options
Diffstat (limited to 'lotuswordpro')
-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; |