diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-01-23 14:32:29 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-01-24 07:46:27 +0100 |
commit | 48fd4199a665130947033ee431db766c04d8d023 (patch) | |
tree | 9df2c493497c604b56dc7ecfa2635fee496adcb4 /cui/source/tabpages/tplnedef.cxx | |
parent | d2cf4cb76268c600ff7cfcdb6dc97c859f8b6e38 (diff) |
loplugin:constparams in connectivity..cui
Change-Id: Ia2ae97498a9aad8638c4b77ce20143eeec616751
Reviewed-on: https://gerrit.libreoffice.org/66792
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui/source/tabpages/tplnedef.cxx')
-rw-r--r-- | cui/source/tabpages/tplnedef.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/tabpages/tplnedef.cxx b/cui/source/tabpages/tplnedef.cxx index 1d38acd64070..a36fcfa37288 100644 --- a/cui/source/tabpages/tplnedef.cxx +++ b/cui/source/tabpages/tplnedef.cxx @@ -379,7 +379,7 @@ IMPL_LINK( SvxLineDefTabPage, ChangeMetricHdl_Impl, weld::ToggleButton&, r, void ChangeMetricHdl_Impl(&r); } -void SvxLineDefTabPage::ChangeMetricHdl_Impl(weld::ToggleButton* p) +void SvxLineDefTabPage::ChangeMetricHdl_Impl(const weld::ToggleButton* p) { if( !m_xCbxSynchronize->get_active() && m_xMtrLength1->get_unit() != eFUnit ) { @@ -450,7 +450,7 @@ IMPL_LINK( SvxLineDefTabPage, SelectTypeListBoxHdl_Impl, weld::ComboBox&, rListB SelectTypeHdl_Impl(&rListBox); } -void SvxLineDefTabPage::SelectTypeHdl_Impl(weld::ComboBox* p) +void SvxLineDefTabPage::SelectTypeHdl_Impl(const weld::ComboBox* p) { if (p == m_xLbType1.get() || !p) { |