diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-07 14:40:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-07 15:27:38 +0200 |
commit | 959ace5861ca8dbb5fbec7a1954eeeb3b93ae4f3 (patch) | |
tree | 7213673c1ee87c1706416b5bf037fb14dc1580cc /sw/source/uibase/inc/swuiidxmrk.hxx | |
parent | 22d5927000a32c54b0ba0355ca9c0999d3b00fb7 (diff) |
loplugin:constparams in sw part10
Change-Id: I7d708c3e6157d0b8690b433d3363d2c0745b2410
Reviewed-on: https://gerrit.libreoffice.org/40832
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/uibase/inc/swuiidxmrk.hxx')
-rw-r--r-- | sw/source/uibase/inc/swuiidxmrk.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/uibase/inc/swuiidxmrk.hxx b/sw/source/uibase/inc/swuiidxmrk.hxx index 2ae2ab4f4a0e..165ec5cfb465 100644 --- a/sw/source/uibase/inc/swuiidxmrk.hxx +++ b/sw/source/uibase/inc/swuiidxmrk.hxx @@ -119,7 +119,7 @@ class SwIndexMarkPane DECL_LINK( PrevSameHdl, Button*, void ); DECL_LINK( ModifyListBoxHdl, ListBox&, void ); DECL_LINK( ModifyEditHdl, Edit&, void ); - void ModifyHdl(Control*); + void ModifyHdl(Control const *); DECL_LINK( KeyDCBModifyHdl, Edit&, void ); DECL_LINK( NewUserIdxHdl, Button*, void ); DECL_LINK( SearchTypeHdl, Button*, void ); @@ -148,7 +148,7 @@ public: ~SwIndexMarkPane(); - void ReInitDlg(SwWrtShell& rWrtShell, SwTOXMark* pCurTOXMark = nullptr); + void ReInitDlg(SwWrtShell& rWrtShell, SwTOXMark const * pCurTOXMark = nullptr); bool IsTOXType(const OUString& rName) {return LISTBOX_ENTRY_NOTFOUND != m_pTypeDCB->GetEntryPos(rName);} }; @@ -161,7 +161,7 @@ public: SwIndexMarkFloatDlg( SfxBindings* pBindings, SfxChildWindow* pChild, vcl::Window *pParent, - SfxChildWinInfo* pInfo, + SfxChildWinInfo const * pInfo, bool bNew); void ReInitDlg(SwWrtShell& rWrtShell); }; @@ -170,7 +170,7 @@ class SwIndexMarkModalDlg : public SvxStandardDialog { SwIndexMarkPane m_aContent; public: - SwIndexMarkModalDlg(vcl::Window *pParent, SwWrtShell& rSh, SwTOXMark* pCurTOXMark); + SwIndexMarkModalDlg(vcl::Window *pParent, SwWrtShell& rSh, SwTOXMark const * pCurTOXMark); virtual void Apply() override; virtual void dispose() override; @@ -236,7 +236,7 @@ public: SwAuthMarkFloatDlg( SfxBindings* pBindings, SfxChildWindow* pChild, vcl::Window *pParent, - SfxChildWinInfo* pInfo, + SfxChildWinInfo const * pInfo, bool bNew); void ReInitDlg(SwWrtShell& rWrtShell); }; |