diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-08-30 23:03:17 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-08-31 09:04:14 +0200 |
commit | 176f0de1d409c50d685f14b2aa01da169a1934ac (patch) | |
tree | a30fd9d2ddd1f5a783cdc059dced16be419a078e /chart2/source/view | |
parent | dddb0429ae8ff3afe8a6152e4104f894c164f3b0 (diff) |
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: I273139d60a9940a009d6917439fe10783db1ac0d
Diffstat (limited to 'chart2/source/view')
-rw-r--r-- | chart2/source/view/axes/Tickmarks_Equidistant.cxx | 4 | ||||
-rw-r--r-- | chart2/source/view/axes/Tickmarks_Equidistant.hxx | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/chart2/source/view/axes/Tickmarks_Equidistant.cxx b/chart2/source/view/axes/Tickmarks_Equidistant.cxx index a614167899f0..ce6b834c4508 100644 --- a/chart2/source/view/axes/Tickmarks_Equidistant.cxx +++ b/chart2/source/view/axes/Tickmarks_Equidistant.cxx @@ -430,7 +430,7 @@ EquidistantTickIter::EquidistantTickIter( const uno::Sequence< uno::Sequence< do : m_pSimpleTicks(&rTicks) , m_pInfoTicks(0) , m_rIncrement(rIncrement) - , m_nMinDepth(0), m_nMaxDepth(0) + , m_nMaxDepth(0) , m_nTickCount(0), m_pnPositions(NULL) , m_pnPreParentCount(NULL), m_pbIntervalFinished(NULL) , m_nCurrentDepth(-1), m_nCurrentPos(-1), m_fCurrentValue( 0.0 ) @@ -444,7 +444,7 @@ EquidistantTickIter::EquidistantTickIter( ::std::vector< ::std::vector< TickInfo : m_pSimpleTicks(NULL) , m_pInfoTicks(&rTicks) , m_rIncrement(rIncrement) - , m_nMinDepth(0), m_nMaxDepth(0) + , m_nMaxDepth(0) , m_nTickCount(0), m_pnPositions(NULL) , m_pnPreParentCount(NULL), m_pbIntervalFinished(NULL) , m_nCurrentDepth(-1), m_nCurrentPos(-1), m_fCurrentValue( 0.0 ) diff --git a/chart2/source/view/axes/Tickmarks_Equidistant.hxx b/chart2/source/view/axes/Tickmarks_Equidistant.hxx index 6fdb631aa558..63548e2ba9a5 100644 --- a/chart2/source/view/axes/Tickmarks_Equidistant.hxx +++ b/chart2/source/view/axes/Tickmarks_Equidistant.hxx @@ -89,8 +89,6 @@ private: //member ::com::sun::star::uno::Sequence< double > >* m_pSimpleTicks; ::std::vector< ::std::vector< TickInfo > >* m_pInfoTicks; const ExplicitIncrementData& m_rIncrement; - //iteration from m_nMinDepth to m_nMaxDepth - sal_Int32 m_nMinDepth; sal_Int32 m_nMaxDepth; sal_Int32 m_nTickCount; sal_Int32* m_pnPositions; //current positions in the different sequences |