You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by hd...@apache.org on 2013/03/19 16:53:14 UTC

svn commit: r1458357 - /openoffice/trunk/main/chart2/source/view/axes/VAxisProperties.cxx

Author: hdu
Date: Tue Mar 19 15:53:14 2013
New Revision: 1458357

URL: http://svn.apache.org/r1458357
Log:
WaE: fix AxisProperties's copy construction for its m_nDimensionIndex member

Modified:
    openoffice/trunk/main/chart2/source/view/axes/VAxisProperties.cxx

Modified: openoffice/trunk/main/chart2/source/view/axes/VAxisProperties.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/chart2/source/view/axes/VAxisProperties.cxx?rev=1458357&r1=1458356&r2=1458357&view=diff
==============================================================================
--- openoffice/trunk/main/chart2/source/view/axes/VAxisProperties.cxx (original)
+++ openoffice/trunk/main/chart2/source/view/axes/VAxisProperties.cxx Tue Mar 19 15:53:14 2013
@@ -197,7 +197,7 @@ AxisProperties::AxisProperties( const un
 
 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 )