diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-06 16:18:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-07 07:21:32 +0100 |
commit | be354a2abd27548405caf97fdbc814b5a6b06995 (patch) | |
tree | a044c734c912a9a194f380d31aabd679772916b2 /sd | |
parent | c947a25b3a785f8d43160671f79e3bb503dfb1ae (diff) |
loplugin:constparams
Change-Id: Ia322ecf8f80b28c58ec33d17ca9607401a92534b
Reviewed-on: https://gerrit.libreoffice.org/45959
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/func/fupage.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/inc/fupage.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/func/fupage.cxx b/sd/source/ui/func/fupage.cxx index 8f05c7b90727..30a3f95b153e 100644 --- a/sd/source/ui/func/fupage.cxx +++ b/sd/source/ui/func/fupage.cxx @@ -203,7 +203,7 @@ void MergePageBackgroundFilling(SdPage *pPage, SdStyleSheet *pStyleSheet, bool b } } -const SfxItemSet* FuPage::ExecuteDialog( vcl::Window* pParent ) +const SfxItemSet* FuPage::ExecuteDialog( vcl::Window const * pParent ) { if (!mpDrawViewShell) return nullptr; diff --git a/sd/source/ui/inc/fupage.hxx b/sd/source/ui/inc/fupage.hxx index 03721ea41e2e..b1912e3576fa 100644 --- a/sd/source/ui/inc/fupage.hxx +++ b/sd/source/ui/inc/fupage.hxx @@ -41,7 +41,7 @@ class FuPage virtual void Activate() override; virtual void Deactivate() override; - const SfxItemSet* ExecuteDialog( vcl::Window* pParent ); + const SfxItemSet* ExecuteDialog( vcl::Window const * pParent ); protected: virtual ~FuPage() override; |