diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2019-11-23 19:17:30 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-11-24 00:26:41 +0100 |
commit | d002d3e8c241f32ac931c1998d7820d5b7b97e64 (patch) | |
tree | a778febf2445f86359f66e80d40b16d2f8f07e83 /svtools/source/config | |
parent | debb38c7be8015b4de4aace6f8ac78e4ee2fbfa6 (diff) |
cppcheck: performing init in init list (sot/svl/svtools/svx)
order had been changed in svx/source/sidebar/paragraph/ParaLineSpacingControl.hxx
so initialization list was fine
Indeed mpActLineDistFld depends on mpLineDistAtMetricBox
Change-Id: I974e68892fe7ab900774bbe912c51ec56ba4ee43
Reviewed-on: https://gerrit.libreoffice.org/83577
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'svtools/source/config')
-rw-r--r-- | svtools/source/config/slidesorterbaropt.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/svtools/source/config/slidesorterbaropt.cxx b/svtools/source/config/slidesorterbaropt.cxx index ecf29453c765..83b10595869c 100644 --- a/svtools/source/config/slidesorterbaropt.cxx +++ b/svtools/source/config/slidesorterbaropt.cxx @@ -120,7 +120,7 @@ class SvtSlideSorterBarOptions_Impl : public ConfigItem SvtSlideSorterBarOptions_Impl::SvtSlideSorterBarOptions_Impl() // Init baseclasses first : ConfigItem( ROOTNODE_SLIDESORTERBAR ) - + , m_seqPropertyNames(GetPropertyNames()) , m_bVisibleImpressView( false ) , m_bVisibleOutlineView( false ) , m_bVisibleNotesView( false ) @@ -129,8 +129,6 @@ SvtSlideSorterBarOptions_Impl::SvtSlideSorterBarOptions_Impl() , m_bVisibleDrawView( false ) { - m_seqPropertyNames = GetPropertyNames( ); - // Use our static list of configuration keys to get his values. Sequence< Any > seqValues = GetProperties( m_seqPropertyNames ); |