diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-31 15:12:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-01 08:54:41 +0200 |
commit | 1875b3d9f2a3873b592d5d207a46a6771649ca95 (patch) | |
tree | e05c86f77db9a70c4c9be5a710a32a1d6c5125ae /forms/source/component/ComboBox.cxx | |
parent | eb9d34dadbf78fd09ff39ba46d0e48c6ae9f9940 (diff) |
clang-tidy:readability-redundant-member-init
Change-Id: I67edbea77b12940ac807ccbadfd74b250902809d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121378
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'forms/source/component/ComboBox.cxx')
-rw-r--r-- | forms/source/component/ComboBox.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/forms/source/component/ComboBox.cxx b/forms/source/component/ComboBox.cxx index 6ef66237a174..9b1bd9b9c7bd 100644 --- a/forms/source/component/ComboBox.cxx +++ b/forms/source/component/ComboBox.cxx @@ -112,7 +112,6 @@ OComboBoxModel::OComboBoxModel(const Reference<XComponentContext>& _rxFactory) // use the old control name for compatibility reasons ,OEntryListHelper( static_cast<OControlModel&>(*this) ) ,OErrorBroadcaster( OComponentHelper::rBHelper ) - ,m_aListRowSet() ,m_eListSourceType(ListSourceType_TABLE) ,m_bEmptyIsNull(true) { @@ -125,7 +124,6 @@ OComboBoxModel::OComboBoxModel( const OComboBoxModel* _pOriginal, const Referenc :OBoundControlModel( _pOriginal, _rxFactory ) ,OEntryListHelper( *_pOriginal, static_cast<OControlModel&>(*this) ) ,OErrorBroadcaster( OComponentHelper::rBHelper ) - ,m_aListRowSet() ,m_aListSource( _pOriginal->m_aListSource ) ,m_aDefaultText( _pOriginal->m_aDefaultText ) ,m_eListSourceType( _pOriginal->m_eListSourceType ) |