diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-06 10:25:54 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-06 15:18:33 +0200 |
commit | 4d830ab33c75dc07d77796d422d909c235c2c127 (patch) | |
tree | 40c3fcb363617246dbb5d92c0b94bc5e3e40acdf /sfx2 | |
parent | bc3e0121b47cc601575b0a49f6ba4959130cf96e (diff) |
const correctness in o3tl::array_view
Change-Id: I44c1ace97ae44069c5a0c6a247aa8a0b49896ad3
Reviewed-on: https://gerrit.libreoffice.org/41985
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/control/dispatch.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/control/dispatch.cxx b/sfx2/source/control/dispatch.cxx index 1cafc6d351d0..20f4de86914e 100644 --- a/sfx2/source/control/dispatch.cxx +++ b/sfx2/source/control/dispatch.cxx @@ -139,7 +139,7 @@ struct SfxDispatcher_Impl SfxSlotFilterState nFilterEnabling; // 1==filter enabled slots, // 2==ReadOnlyDoc overturned - o3tl::array_view<sal_uInt16> + o3tl::array_view<sal_uInt16 const> pFilterSIDs; // sorted Array of SIDs SfxDisableFlags nDisableFlags; bool bFlushed; @@ -1614,7 +1614,7 @@ void SfxDispatcher::FlushImpl() pDisp->SetSlotFilter(); */ void SfxDispatcher::SetSlotFilter(SfxSlotFilterState nEnable, - o3tl::array_view<sal_uInt16> pSIDs) + o3tl::array_view<sal_uInt16 const> pSIDs) { #ifdef DBG_UTIL // Check Array |