diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-07-05 00:22:28 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-07-05 10:38:08 +0900 |
commit | 8624906bc437b242ea0df17801bc77d0f273f32c (patch) | |
tree | 39505208fd8aded8f1d7926a8f6feec791bdb1aa /svl | |
parent | 1d8ae0c040319ba7d969fa236b7a6bb22d0f55df (diff) |
Mark as const
Change-Id: Ia5f9724002da11da69f70bb0f71d44c3b5a19bcb
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/numbers/numfmuno.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/numbers/numfmuno.cxx b/svl/source/numbers/numfmuno.cxx index 826d53d902c1..95b012e9404a 100644 --- a/svl/source/numbers/numfmuno.cxx +++ b/svl/source/numbers/numfmuno.cxx @@ -62,7 +62,7 @@ using namespace com::sun::star; static const SfxItemPropertyMapEntry* lcl_GetNumberFormatPropertyMap() { - static SfxItemPropertyMapEntry aNumberFormatPropertyMap_Impl[] = + static const SfxItemPropertyMapEntry aNumberFormatPropertyMap_Impl[] = { {MAP_CHAR_LEN(PROPERTYNAME_FMTSTR), 0, &getCppuType((OUString*)0), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::READONLY, 0}, {MAP_CHAR_LEN(PROPERTYNAME_LOCALE), 0, &getCppuType((lang::Locale*)0),beans::PropertyAttribute::BOUND | beans::PropertyAttribute::READONLY, 0}, @@ -84,7 +84,7 @@ static const SfxItemPropertyMapEntry* lcl_GetNumberFormatPropertyMap() static const SfxItemPropertyMapEntry* lcl_GetNumberSettingsPropertyMap() { - static SfxItemPropertyMapEntry aNumberSettingsPropertyMap_Impl[] = + static const SfxItemPropertyMapEntry aNumberSettingsPropertyMap_Impl[] = { {MAP_CHAR_LEN(PROPERTYNAME_NOZERO), 0, &getBooleanCppuType(), beans::PropertyAttribute::BOUND, 0}, {MAP_CHAR_LEN(PROPERTYNAME_NULLDATE), 0, &getCppuType((util::Date*)0), beans::PropertyAttribute::BOUND, 0}, |