diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-17 08:00:48 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-17 08:05:15 +0900 |
commit | bfe4074ecbb66cb48f1959102cfa9e4a3756a902 (patch) | |
tree | 668b5ac9f7cd5b8d4ea0162d5a93efd1083c581e /sc/source | |
parent | 405951c23c6429d166c45a8dda289db813483000 (diff) |
Mark as const
Change-Id: I95844f01d3f7ed6e22b8d78b7a2366b131bd325b
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/core/tool/consoli.cxx | 2 | ||||
-rw-r--r-- | sc/source/core/tool/interpr1.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/app/rfindlst.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/navipi/content.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/unoobj/styleuno.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/view/output.cxx | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/core/tool/consoli.cxx b/sc/source/core/tool/consoli.cxx index f7795caf36a8..137f5f3eda67 100644 --- a/sc/source/core/tool/consoli.cxx +++ b/sc/source/core/tool/consoli.cxx @@ -33,7 +33,7 @@ // STATIC DATA ----------------------------------------------------------- -static OpCode eOpCodeTable[] = { // Reihenfolge wie bei enum ScSubTotalFunc +static const OpCode eOpCodeTable[] = { // Reihenfolge wie bei enum ScSubTotalFunc ocBad, // none ocAverage, ocCount, diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx index da14d429281e..3d573267fc50 100644 --- a/sc/source/core/tool/interpr1.cxx +++ b/sc/source/core/tool/interpr1.cxx @@ -7992,7 +7992,7 @@ typedef struct { UBlockCode to; } UBlockScript; -static UBlockScript scriptList[] = { +static const UBlockScript scriptList[] = { {UBLOCK_HANGUL_JAMO, UBLOCK_HANGUL_JAMO}, {UBLOCK_CJK_RADICALS_SUPPLEMENT, UBLOCK_HANGUL_SYLLABLES}, {UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS,UBLOCK_CJK_RADICALS_SUPPLEMENT }, diff --git a/sc/source/ui/app/rfindlst.cxx b/sc/source/ui/app/rfindlst.cxx index 625814f101e9..cb326e7884cd 100644 --- a/sc/source/ui/app/rfindlst.cxx +++ b/sc/source/ui/app/rfindlst.cxx @@ -23,7 +23,7 @@ #define SC_RANGECOLORS 8 -static ColorData aColNames[SC_RANGECOLORS] = +static const ColorData aColNames[SC_RANGECOLORS] = { COL_LIGHTBLUE, COL_LIGHTRED, COL_LIGHTMAGENTA, COL_GREEN, COL_BLUE, COL_RED, COL_MAGENTA, COL_BROWN }; diff --git a/sc/source/ui/navipi/content.cxx b/sc/source/ui/navipi/content.cxx index 0d3dfedfad06..a464d77881e9 100644 --- a/sc/source/ui/navipi/content.cxx +++ b/sc/source/ui/navipi/content.cxx @@ -62,7 +62,7 @@ using namespace com::sun::star; // Reihenfolge der Kategorien im Navigator ------------------------------------- -static sal_uInt16 pTypeList[SC_CONTENT_COUNT] = +static const sal_uInt16 pTypeList[SC_CONTENT_COUNT] = { SC_CONTENT_ROOT, // ROOT (0) muss vorne stehen SC_CONTENT_TABLE, diff --git a/sc/source/ui/unoobj/styleuno.cxx b/sc/source/ui/unoobj/styleuno.cxx index 163c5a8aba6f..5e7de70e728b 100644 --- a/sc/source/ui/unoobj/styleuno.cxx +++ b/sc/source/ui/unoobj/styleuno.cxx @@ -376,7 +376,7 @@ static const SfxItemPropertyMap* lcl_GetFooterStyleMap() #define SC_FAMILYNAME_CELL "CellStyles" #define SC_FAMILYNAME_PAGE "PageStyles" -static sal_uInt16 aStyleFamilyTypes[SC_STYLE_FAMILY_COUNT] = { SFX_STYLE_FAMILY_PARA, SFX_STYLE_FAMILY_PAGE }; +static const sal_uInt16 aStyleFamilyTypes[SC_STYLE_FAMILY_COUNT] = { SFX_STYLE_FAMILY_PARA, SFX_STYLE_FAMILY_PAGE }; //------------------------------------------------------------------------ diff --git a/sc/source/ui/view/output.cxx b/sc/source/ui/view/output.cxx index 37b8c3166c03..21c471bfbd88 100644 --- a/sc/source/ui/view/output.cxx +++ b/sc/source/ui/view/output.cxx @@ -78,7 +78,7 @@ using namespace com::sun::star; #define SC_AUTHORCOLORCOUNT 9 -static ColorData nAuthorColor[ SC_AUTHORCOLORCOUNT ] = { +static const ColorData nAuthorColor[ SC_AUTHORCOLORCOUNT ] = { COL_LIGHTRED, COL_LIGHTBLUE, COL_LIGHTMAGENTA, COL_GREEN, COL_RED, COL_BLUE, COL_BROWN, COL_MAGENTA, COL_CYAN }; |