From caf64a8c814bf821eef302fc6c2570c05b7fb169 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sun, 17 Apr 2016 11:53:08 +0200 Subject: Avoid reserved identifiers Change-Id: I48654972e66b9a298940d800b2e04018cfd5bef8 --- lotuswordpro/source/filter/localtime.cxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lotuswordpro') diff --git a/lotuswordpro/source/filter/localtime.cxx b/lotuswordpro/source/filter/localtime.cxx index 66455a4f7d91..d6be85751b3b 100644 --- a/lotuswordpro/source/filter/localtime.cxx +++ b/lotuswordpro/source/filter/localtime.cxx @@ -66,10 +66,6 @@ const long LONG_MAX=2147483647; //01-01-70 was a Thursday const long BASE_DOW = 4; -long _lpdays[] = {-1, 30, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365}; - -long _days[] = {-1, 30, 58, 89, 119, 150, 180, 211, 242, 272, 303, 333, 364}; - bool LtgGmTime(long rtime,LtTm& rtm) { if (rtime < 0) @@ -129,14 +125,18 @@ bool LtgGmTime(long rtime,LtTm& rtm) //Determine months since January (0 - 11) and day of month (1 - 31) - long* mdays; + long const * mdays; if ( islpyr ) { - mdays = _lpdays; + static long const lpdays[] = + {-1, 30, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365}; + mdays = lpdays; } else { - mdays = _days; + static long const days[] = + {-1, 30, 58, 89, 119, 150, 180, 211, 242, 272, 303, 333, 364}; + mdays = days; } for ( tmptim = 1 ; mdays[tmptim] < rtm.tm_yday ; tmptim++ ) ; -- cgit