diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-28 04:53:50 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-28 04:55:33 +0900 |
commit | eb6ab3bc045701e3d4b8751751700d8375f89fcc (patch) | |
tree | d84a2b1fd648d49e83fa19ed4018e9b705395556 /tools/source/datetime | |
parent | 7673a08e7200227b9dbcb7ee8706064f55013c44 (diff) |
Mark as const
Change-Id: If20ac542f31dd650d6d1cc22ced618f73e1ce773
Diffstat (limited to 'tools/source/datetime')
-rw-r--r-- | tools/source/datetime/tdate.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/datetime/tdate.cxx b/tools/source/datetime/tdate.cxx index 11f1917c9e8a..719219a58afe 100644 --- a/tools/source/datetime/tdate.cxx +++ b/tools/source/datetime/tdate.cxx @@ -32,7 +32,7 @@ struct tm *localtime_r(const time_t *timep, struct tm *buffer); } #endif -static sal_uInt16 aDaysInMonth[12] = { 31, 28, 31, 30, 31, 30, +static const sal_uInt16 aDaysInMonth[12] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; #define MAX_DAYS 3636532 |