diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-26 12:59:32 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-26 12:59:32 +0100 |
commit | efa5c54373f6fbfdbb993bd3e1c30dab42e323c6 (patch) | |
tree | cc4527cdc2805be0e54883e59943895c6d28963d /xmloff | |
parent | e336d7f80fd9f7ada4b12c37f9434df411d28466 (diff) |
-Werror,-Wunused-private-field
Change-Id: I3f328023d99d3505ab2ce2a80eef82d84d81446e
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/SchXMLChartContext.hxx | 1 | ||||
-rw-r--r-- | xmloff/source/chart/SchXMLPlotAreaContext.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/chart/SchXMLPlotAreaContext.hxx | 2 | ||||
-rw-r--r-- | xmloff/source/chart/SchXMLSeries2Context.cxx | 4 |
4 files changed, 2 insertions, 7 deletions
diff --git a/xmloff/source/chart/SchXMLChartContext.hxx b/xmloff/source/chart/SchXMLChartContext.hxx index e5e67c776979..de69e1e60a19 100644 --- a/xmloff/source/chart/SchXMLChartContext.hxx +++ b/xmloff/source/chart/SchXMLChartContext.hxx @@ -93,7 +93,6 @@ private: SchXMLImportHelper& mrImportHelper; OUString maMainTitle, maSubTitle; - css::awt::Point maMainTitlePos, maSubTitlePos, maLegendPos; OUString m_aXLinkHRefAttributeToIndicateDataProvider; bool m_bHasRangeAtPlotArea; bool m_bHasTableElement; diff --git a/xmloff/source/chart/SchXMLPlotAreaContext.cxx b/xmloff/source/chart/SchXMLPlotAreaContext.cxx index 813a90e28a0d..c7f9ae3d5ad4 100644 --- a/xmloff/source/chart/SchXMLPlotAreaContext.cxx +++ b/xmloff/source/chart/SchXMLPlotAreaContext.cxx @@ -969,7 +969,6 @@ SchXMLStatisticsObjectContext::SchXMLStatisticsObjectContext( ::std::list< DataRowPointStyle >& rStyleList, const css::uno::Reference< css::chart2::XDataSeries >& xSeries, ContextType eContextType, - const awt::Size & rChartSize, tSchXMLLSequencesPerIndex & rLSequencesPerIndex) : SvXMLImportContext( rImport, nPrefix, rLocalName ), @@ -977,7 +976,6 @@ SchXMLStatisticsObjectContext::SchXMLStatisticsObjectContext( mrStyleList( rStyleList ), m_xSeries( xSeries ), meContextType( eContextType ), - maChartSize( rChartSize ), maSeriesStyleName( rSeriesStyleName), mrLSequencesPerIndex(rLSequencesPerIndex) {} diff --git a/xmloff/source/chart/SchXMLPlotAreaContext.hxx b/xmloff/source/chart/SchXMLPlotAreaContext.hxx index f9cae3eb3cc8..487ab359bfab 100644 --- a/xmloff/source/chart/SchXMLPlotAreaContext.hxx +++ b/xmloff/source/chart/SchXMLPlotAreaContext.hxx @@ -245,7 +245,6 @@ public: ::std::list< DataRowPointStyle >& rStyleList, const css::uno::Reference< css::chart2::XDataSeries >& xSeries, ContextType eContextType, - const css::awt::Size & rChartSize, tSchXMLLSequencesPerIndex & rLSequencesPerIndex ); virtual ~SchXMLStatisticsObjectContext(); @@ -261,7 +260,6 @@ private: ::std::list< DataRowPointStyle > & mrStyleList; css::uno::Reference< css::chart2::XDataSeries > m_xSeries; ContextType meContextType; - css::awt::Size maChartSize; OUString maSeriesStyleName; tSchXMLLSequencesPerIndex& mrLSequencesPerIndex; }; diff --git a/xmloff/source/chart/SchXMLSeries2Context.cxx b/xmloff/source/chart/SchXMLSeries2Context.cxx index 4f23d1508f83..644052dbf1f2 100644 --- a/xmloff/source/chart/SchXMLSeries2Context.cxx +++ b/xmloff/source/chart/SchXMLSeries2Context.cxx @@ -661,7 +661,7 @@ SvXMLImportContext* SchXMLSeries2Context::CreateChildContext( nPrefix, rLocalName, msAutoStyleName, mrStyleList, m_xSeries, SchXMLStatisticsObjectContext::CONTEXT_TYPE_MEAN_VALUE_LINE, - maChartSize, mrLSequencesPerIndex ); + mrLSequencesPerIndex ); break; case XML_TOK_SERIES_REGRESSION_CURVE: pContext = new SchXMLRegressionCurveObjectContext( @@ -675,7 +675,7 @@ SvXMLImportContext* SchXMLSeries2Context::CreateChildContext( nPrefix, rLocalName, msAutoStyleName, mrStyleList, m_xSeries, SchXMLStatisticsObjectContext::CONTEXT_TYPE_ERROR_INDICATOR, - maChartSize, mrLSequencesPerIndex ); + mrLSequencesPerIndex ); break; case XML_TOK_SERIES_DATA_POINT: |