Kaydet (Commit) 0c9a6bf5 authored tarafından Luboš Luňák's avatar Luboš Luňák

do not initialize a field with itself

üst 3ae3f098
......@@ -199,7 +199,7 @@ AxisProperties::AxisProperties( const uno::Reference< XAxis >& xAxisModel
AxisProperties::AxisProperties( const AxisProperties& rAxisProperties )
: m_xAxisModel( rAxisProperties.m_xAxisModel )
, m_nDimensionIndex( m_nDimensionIndex )
, m_nDimensionIndex( rAxisProperties.m_nDimensionIndex )
, m_bIsMainAxis( rAxisProperties.m_bIsMainAxis )
, m_bSwapXAndY( rAxisProperties.m_bSwapXAndY )
, m_eCrossoverType( rAxisProperties.m_eCrossoverType )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment