summaryrefslogtreecommitdiff
path: root/sw/inc/hintids.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-04-10 09:22:07 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-04-10 10:44:39 +0200
commitc602bbaa89784681025ae487ad230ed0e86e9acb (patch)
tree2ba4cbe933a5534b7e5938cc826bc4f09efe3fb3 /sw/inc/hintids.hxx
parentb285a08e3cfeeb1333aa0bddee508baad65b8588 (diff)
constify some which range arrays
Change-Id: I1c94090c4846e232bd6bb9c86a0c94b750ccbf5c Reviewed-on: https://gerrit.libreoffice.org/70499 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/inc/hintids.hxx')
-rw-r--r--sw/inc/hintids.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sw/inc/hintids.hxx b/sw/inc/hintids.hxx
index a52c6f40a59d..609c705b1c20 100644
--- a/sw/inc/hintids.hxx
+++ b/sw/inc/hintids.hxx
@@ -420,29 +420,29 @@ sal_Unicode GetCharOfTextAttr( const SwTextAttr& rAttr );
// all Sets defined in init.cxx
// AttrSet-Range for the 3 Break-Attribute
-extern sal_uInt16 aBreakSetRange[];
+extern sal_uInt16 const aBreakSetRange[];
// AttrSet-Range for TextFormatColl
-extern sal_uInt16 aTextFormatCollSetRange[];
+extern sal_uInt16 const aTextFormatCollSetRange[];
// AttrSet-Range for GrfFormatColl
-extern sal_uInt16 aGrfFormatCollSetRange[];
+extern sal_uInt16 const aGrfFormatCollSetRange[];
// AttrSet-Range for TextNode
-SW_DLLPUBLIC extern sal_uInt16 aTextNodeSetRange[];
+SW_DLLPUBLIC extern sal_uInt16 const aTextNodeSetRange[];
// AttrSet-Range for NoTextNode
-extern sal_uInt16 aNoTextNodeSetRange[];
+extern sal_uInt16 const aNoTextNodeSetRange[];
// AttrSet-Range for SwTable
-extern sal_uInt16 aTableSetRange[];
+extern sal_uInt16 const aTableSetRange[];
// AttrSet-Range for SwTableLine
-extern sal_uInt16 aTableLineSetRange[];
+extern sal_uInt16 const aTableLineSetRange[];
// AttrSet-Range for SwTableBox
-extern sal_uInt16 aTableBoxSetRange[];
+extern sal_uInt16 const aTableBoxSetRange[];
// AttrSet-Range for SwFrameFormat
-SW_DLLPUBLIC extern sal_uInt16 aFrameFormatSetRange[];
+SW_DLLPUBLIC extern sal_uInt16 const aFrameFormatSetRange[];
// AttrSet-Range for SwCharFormat
-extern sal_uInt16 aCharFormatSetRange[];
+extern sal_uInt16 const aCharFormatSetRange[];
// AttrSet-Range for the autostyles
-extern sal_uInt16 aCharAutoFormatSetRange[];
+extern sal_uInt16 const aCharAutoFormatSetRange[];
// AttrSet-Range for SwPageDescFormat
-extern sal_uInt16 aPgFrameFormatSetRange[];
+extern sal_uInt16 const aPgFrameFormatSetRange[];
// check if ID is InRange of AttrSet-Ids
bool IsInRange( const sal_uInt16* pRange, const sal_uInt16 nId );