diff options
-rw-r--r-- | chart2/source/view/charttypes/AreaChart.cxx | 1 | ||||
-rw-r--r-- | chart2/source/view/charttypes/NetChart.cxx | 4 | ||||
-rw-r--r-- | chart2/source/view/charttypes/NetChart.hxx | 1 |
3 files changed, 1 insertions, 5 deletions
diff --git a/chart2/source/view/charttypes/AreaChart.cxx b/chart2/source/view/charttypes/AreaChart.cxx index 195b70669268..3dee4f47e44b 100644 --- a/chart2/source/view/charttypes/AreaChart.cxx +++ b/chart2/source/view/charttypes/AreaChart.cxx @@ -29,7 +29,6 @@ #include "LabelPositionHelper.hxx" #include "Clipping.hxx" #include "Stripe.hxx" -#include "PolarLabelPositionHelper.hxx" #include "DateHelper.hxx" #include <com/sun/star/chart2/Symbol.hpp> diff --git a/chart2/source/view/charttypes/NetChart.cxx b/chart2/source/view/charttypes/NetChart.cxx index 297de74d7371..76672e19bdf6 100644 --- a/chart2/source/view/charttypes/NetChart.cxx +++ b/chart2/source/view/charttypes/NetChart.cxx @@ -24,7 +24,6 @@ #include "macros.hxx" #include "ViewDefines.hxx" #include "ObjectIdentifier.hxx" -#include "Splines.hxx" #include "ChartTypeHelper.hxx" #include "LabelPositionHelper.hxx" #include "Clipping.hxx" @@ -58,7 +57,6 @@ NetChart::NetChart( const uno::Reference<XChartType>& xChartTypeModel , m_pMainPosHelper(pPlottingPositionHelper) , m_bArea(!bNoArea) , m_bLine(bNoArea) - , m_bSymbol( ChartTypeHelper::isSupportingSymbolProperties(xChartTypeModel,nDimensionCount) ) , m_xSeriesTarget(0) , m_xTextTarget(0) { @@ -657,7 +655,7 @@ void NetChart::createShapes() if( !bIsVisible ) continue; - Symbol* pSymbolProperties = m_bSymbol ? (*aSeriesIter)->getSymbolProperties( nIndex ) : 0; + Symbol* pSymbolProperties = (*aSeriesIter)->getSymbolProperties( nIndex ); bool bCreateSymbol = pSymbolProperties && (pSymbolProperties->Style != SymbolStyle_NONE); if( !bCreateSymbol && !pSeries->getDataPointLabelIfLabel(nIndex) ) diff --git a/chart2/source/view/charttypes/NetChart.hxx b/chart2/source/view/charttypes/NetChart.hxx index 3452241b9253..6b3a73fc94e0 100644 --- a/chart2/source/view/charttypes/NetChart.hxx +++ b/chart2/source/view/charttypes/NetChart.hxx @@ -69,7 +69,6 @@ private: //member bool m_bArea;//false -> line or symbol only bool m_bLine; - bool m_bSymbol; ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShapes > m_xSeriesTarget; |