summaryrefslogtreecommitdiff
path: root/reportdesign
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-09-01 08:57:02 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-09-01 11:20:17 +0200
commitad4d09db4a359748f5ecf5e78a3513ef3878e9c1 (patch)
tree7085515b695ac84b76c59bf7471c53e0b664a1cf /reportdesign
parentb3e7d61278701ffcc5330e8d65cf9e78991a1754 (diff)
clang-tidy:readability-redundant-member-init
Change-Id: Ic5abfe2d047750d8dfd3ae8cc733fa15d34ea505 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121432 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'reportdesign')
-rw-r--r--reportdesign/source/core/sdr/UndoEnv.cxx3
-rw-r--r--reportdesign/source/core/sdr/formatnormalizer.cxx1
-rw-r--r--reportdesign/source/ui/dlg/Navigator.cxx3
3 files changed, 1 insertions, 6 deletions
diff --git a/reportdesign/source/core/sdr/UndoEnv.cxx b/reportdesign/source/core/sdr/UndoEnv.cxx
index 4f7168e4f2e7..45aa4119255d 100644
--- a/reportdesign/source/core/sdr/UndoEnv.cxx
+++ b/reportdesign/source/core/sdr/UndoEnv.cxx
@@ -76,8 +76,6 @@ struct ObjectInfo
Reference< XPropertySet > xPropertyIntrospection;
ObjectInfo()
- :aProperties()
- ,xPropertyIntrospection()
{
}
};
@@ -108,7 +106,6 @@ public:
OXUndoEnvironmentImpl::OXUndoEnvironmentImpl(OReportModel& _rModel) : m_rModel(_rModel)
,m_aFormatNormalizer( _rModel )
- ,m_aConditionUpdater()
,m_nLocks(0)
,m_bReadOnly(false)
,m_bIsUndo(false)
diff --git a/reportdesign/source/core/sdr/formatnormalizer.cxx b/reportdesign/source/core/sdr/formatnormalizer.cxx
index c4d22941fbf3..ae576bc40747 100644
--- a/reportdesign/source/core/sdr/formatnormalizer.cxx
+++ b/reportdesign/source/core/sdr/formatnormalizer.cxx
@@ -58,7 +58,6 @@ namespace rptui
FormatNormalizer::FormatNormalizer( const OReportModel& _rModel )
:m_rModel( _rModel )
- ,m_xReportDefinition( )
,m_bFieldListDirty( true )
{
}
diff --git a/reportdesign/source/ui/dlg/Navigator.cxx b/reportdesign/source/ui/dlg/Navigator.cxx
index 74b06b080cf3..ed7b2b6f6669 100644
--- a/reportdesign/source/ui/dlg/Navigator.cxx
+++ b/reportdesign/source/ui/dlg/Navigator.cxx
@@ -207,8 +207,7 @@ public:
}
NavigatorTree::NavigatorTree(std::unique_ptr<weld::TreeView> xTreeView, OReportController& rController)
- : comphelper::OSelectionChangeListener()
- , OPropertyChangeListener(m_aMutex)
+ : OPropertyChangeListener(m_aMutex)
, m_xTreeView(std::move(xTreeView))
, m_rController(rController)
{