From 4d830ab33c75dc07d77796d422d909c235c2c127 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 6 Sep 2017 10:25:54 +0200 Subject: const correctness in o3tl::array_view Change-Id: I44c1ace97ae44069c5a0c6a247aa8a0b49896ad3 Reviewed-on: https://gerrit.libreoffice.org/41985 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sd/source/ui/inc/DrawDocShell.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sd/source') diff --git a/sd/source/ui/inc/DrawDocShell.hxx b/sd/source/ui/inc/DrawDocShell.hxx index ecfb545be2fd..3c38e0847af2 100644 --- a/sd/source/ui/inc/DrawDocShell.hxx +++ b/sd/source/ui/inc/DrawDocShell.hxx @@ -150,7 +150,7 @@ public: */ bool CheckPageName(vcl::Window* pWin, OUString& rName ); - void SetSlotFilter(bool bEnable = false, o3tl::array_view pSIDs = o3tl::array_view()) { mbFilterEnable = bEnable; mpFilterSIDs = pSIDs; } + void SetSlotFilter(bool bEnable = false, o3tl::array_view pSIDs = o3tl::array_view()) { mbFilterEnable = bEnable; mpFilterSIDs = pSIDs; } void ApplySlotFilter() const; SfxStyleFamily GetStyleFamily() const { return mnStyleFamily; } @@ -216,7 +216,7 @@ protected: rtl::Reference mxDocShellFunction; DocumentType meDocType; SfxStyleFamily mnStyleFamily; - o3tl::array_view + o3tl::array_view mpFilterSIDs; bool mbFilterEnable; bool mbSdDataObj; -- cgit