diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-03 08:33:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-03 11:33:01 +0200 |
commit | 7e48bcea73a8eceacd708cb7fdeb66264eb602d6 (patch) | |
tree | 542361b76825d90a534591af16deaa42e72e18ee /svx/source/fmcomp | |
parent | f35b9909070919013a753c382bff52614403c7a2 (diff) |
clang-tidy:readability-redundant-member-init
Change-Id: I47cc5416e853260d92b8b2c57b1c223d1f21df0b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121544
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/fmcomp')
-rw-r--r-- | svx/source/fmcomp/fmgridif.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/svx/source/fmcomp/fmgridif.cxx b/svx/source/fmcomp/fmgridif.cxx index 5d95193d09a1..52b05f086986 100644 --- a/svx/source/fmcomp/fmgridif.cxx +++ b/svx/source/fmcomp/fmgridif.cxx @@ -331,8 +331,7 @@ Reference< XInterface > FmXGridControl_NewInstance_Impl(const Reference< XMultiS } FmXGridControl::FmXGridControl(const Reference< XComponentContext >& _rxContext) - :UnoControl() - ,m_aModifyListeners(*this, GetMutex()) + :m_aModifyListeners(*this, GetMutex()) ,m_aUpdateListeners(*this, GetMutex()) ,m_aContainerListeners(*this, GetMutex()) ,m_aSelectionListeners(*this, GetMutex()) |