diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-10-15 16:18:19 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-11-19 13:47:37 +0100 |
commit | b4c78680e097254923decc71deaf8205f9737e3f (patch) | |
tree | 3176768bad32f9f6df80c0102508f5ffd5ba6451 /chart2 | |
parent | ebf550d68443e0f519fe9f77763d00fce61edb78 (diff) |
adapt name of method
Change-Id: I02435256f747bb2bff63414735fa5af3b3413e82
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/view/inc/AbstractShapeFactory.hxx | 5 | ||||
-rw-r--r-- | chart2/source/view/inc/OpenglShapeFactory.hxx | 5 | ||||
-rw-r--r-- | chart2/source/view/inc/ShapeFactory.hxx | 5 | ||||
-rw-r--r-- | chart2/source/view/main/OpenglShapeFactory.cxx | 5 | ||||
-rw-r--r-- | chart2/source/view/main/ShapeFactory.cxx | 5 |
5 files changed, 15 insertions, 10 deletions
diff --git a/chart2/source/view/inc/AbstractShapeFactory.hxx b/chart2/source/view/inc/AbstractShapeFactory.hxx index 6a25e9ec6573..8dd8137acb8b 100644 --- a/chart2/source/view/inc/AbstractShapeFactory.hxx +++ b/chart2/source/view/inc/AbstractShapeFactory.hxx @@ -232,10 +232,11 @@ public: com::sun::star::drawing::XShapes> & xTarget, const DataSeriesState& rSeriesState ) = 0; - virtual void pushNextSeriesState( const com::sun::star::uno::Reference< + virtual void renderSeries( const com::sun::star::uno::Reference< com::sun::star::drawing::XShapes> & xTarget, const DataSeriesState& rOldSeriesState, - const DataSeriesState& rNewSeriesState ) = 0; + const DataSeriesState& rNewSeriesState, + double nPercent ) = 0; static ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShapes > getChartRootShape( const ::com::sun::star::uno::Reference< diff --git a/chart2/source/view/inc/OpenglShapeFactory.hxx b/chart2/source/view/inc/OpenglShapeFactory.hxx index 93b5e140c19f..1dc444d6e8b6 100644 --- a/chart2/source/view/inc/OpenglShapeFactory.hxx +++ b/chart2/source/view/inc/OpenglShapeFactory.hxx @@ -178,10 +178,11 @@ public: com::sun::star::drawing::XShapes> & xTarget, const DataSeriesState& rSeriesState ); - virtual void pushNextSeriesState( const com::sun::star::uno::Reference< + virtual void renderSeries( const com::sun::star::uno::Reference< com::sun::star::drawing::XShapes> & xTarget, const DataSeriesState& rOldSeriesState, - const DataSeriesState& rNewSeriesState ); + const DataSeriesState& rNewSeriesState, + double nPercent ); virtual ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShapes > getOrCreateChartRootShape( const ::com::sun::star::uno::Reference< diff --git a/chart2/source/view/inc/ShapeFactory.hxx b/chart2/source/view/inc/ShapeFactory.hxx index a88893c57063..f2c662b044a3 100644 --- a/chart2/source/view/inc/ShapeFactory.hxx +++ b/chart2/source/view/inc/ShapeFactory.hxx @@ -193,10 +193,11 @@ public: com::sun::star::drawing::XShapes> & xTarget, const DataSeriesState& rSeriesState ); - virtual void pushNextSeriesState( const com::sun::star::uno::Reference< + virtual void renderSeries( const com::sun::star::uno::Reference< com::sun::star::drawing::XShapes> & xTarget, const DataSeriesState& rOldSeriesState, - const DataSeriesState& rNewSeriesState ); + const DataSeriesState& rNewSeriesState, + double nPercent ); virtual ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShapes > getOrCreateChartRootShape( const ::com::sun::star::uno::Reference< diff --git a/chart2/source/view/main/OpenglShapeFactory.cxx b/chart2/source/view/main/OpenglShapeFactory.cxx index dc62d6fe6c37..f4dc5e6e7122 100644 --- a/chart2/source/view/main/OpenglShapeFactory.cxx +++ b/chart2/source/view/main/OpenglShapeFactory.cxx @@ -288,10 +288,11 @@ void OpenglShapeFactory::createSeries( const uno::Reference< { } -void OpenglShapeFactory::pushNextSeriesState( const uno::Reference< +void OpenglShapeFactory::renderSeries( const uno::Reference< drawing::XShapes> & , const DataSeriesState& , - const DataSeriesState& ) + const DataSeriesState&, + double ) { } diff --git a/chart2/source/view/main/ShapeFactory.cxx b/chart2/source/view/main/ShapeFactory.cxx index 9a7f59e2e7d2..2bf11e4e1c39 100644 --- a/chart2/source/view/main/ShapeFactory.cxx +++ b/chart2/source/view/main/ShapeFactory.cxx @@ -2127,10 +2127,11 @@ void ShapeFactory::createSeries( const uno::Reference< throw uno::RuntimeException(); } -void ShapeFactory::pushNextSeriesState( const uno::Reference< +void ShapeFactory::renderSeries( const uno::Reference< drawing::XShapes> & , const DataSeriesState& , - const DataSeriesState& ) + const DataSeriesState&, + double ) { // unsupported for now // do we actually want to support this in the normal |