diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-13 10:40:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-13 19:21:28 +0100 |
commit | b4cb9bc2b80e316ff615e14c4a5ae2a1ab492f91 (patch) | |
tree | 3bde5c701091b9ec1dd02ffbeed5ab621514a247 /svx/source/form/filtnav.cxx | |
parent | df3e1b7bbd126ed114015070bf68db30fbe9516e (diff) |
Revert "loplugin:constfields in svx"
This reverts commit 1a6397030381a45f27ab7a2a02e6e6d0f9987c84.
Change-Id: Iaa706bb4ea3144ef57ab359b982400abc589b97e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90454
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/form/filtnav.cxx')
-rw-r--r-- | svx/source/form/filtnav.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/form/filtnav.cxx b/svx/source/form/filtnav.cxx index 820315e0330d..4296f73f1a8d 100644 --- a/svx/source/form/filtnav.cxx +++ b/svx/source/form/filtnav.cxx @@ -176,7 +176,7 @@ namespace { class FmFilterHint : public SfxHint { - FmFilterData* const m_pData; + FmFilterData* m_pData; public: explicit FmFilterHint(FmFilterData* pData):m_pData(pData){} @@ -185,7 +185,7 @@ public: class FmFilterInsertedHint : public FmFilterHint { - size_t const m_nPos; // Position relative to the parent of the data + size_t m_nPos; // Position relative to the parent of the data public: FmFilterInsertedHint(FmFilterData* pData, size_t nRelPos) |