diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2014-04-27 17:01:10 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2014-04-27 17:01:46 +0200 |
commit | 37c3a1c097567de818daec1e68ef132d57bcf17a (patch) | |
tree | 1199d05c7b35ae134b27da651ef6636e4f91d2e1 /sd | |
parent | e474c95cdec503bc2abb90619a7a3677d2942a63 (diff) |
const
Change-Id: I0ce6965f191d1455bcc7a793025282e20b7433a5
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/dlg/paragr.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/dlg/paragr.cxx b/sd/source/ui/dlg/paragr.cxx index 91f4b30ef507..4afad9bcdc1f 100644 --- a/sd/source/ui/dlg/paragr.cxx +++ b/sd/source/ui/dlg/paragr.cxx @@ -41,7 +41,7 @@ public: virtual ~SdParagraphNumTabPage(); static SfxTabPage* Create( Window* pParent, const SfxItemSet& rSet ); - static sal_uInt16* GetRanges(); + static const sal_uInt16* GetRanges(); virtual bool FillItemSet( SfxItemSet& rSet ) SAL_OVERRIDE; virtual void Reset( const SfxItemSet& rSet ) SAL_OVERRIDE; @@ -79,9 +79,9 @@ SfxTabPage* SdParagraphNumTabPage::Create(Window *pParent, const SfxItemSet & rA return new SdParagraphNumTabPage( pParent, rAttrSet ); } -sal_uInt16* SdParagraphNumTabPage::GetRanges() +const sal_uInt16* SdParagraphNumTabPage::GetRanges() { - static sal_uInt16 aRange[] = + static const sal_uInt16 aRange[] = { ATTR_PARANUMBERING_START, ATTR_PARANUMBERING_END, 0 |