diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-05-10 01:04:50 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-05-11 05:19:45 +0200 |
commit | 9b884187bad58a2291928349c455150d472dff62 (patch) | |
tree | 970930fcb6209f59248b944e5c027998c69f34e8 /include | |
parent | 020a52d855233164a4a1346eeacd3f07592ef36e (diff) |
split exportSeries function up
Change-Id: I06c09a494bdf37a87ff851a8e3cbc94b22b9a511
Diffstat (limited to 'include')
-rw-r--r-- | include/oox/export/chartexport.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/oox/export/chartexport.hxx b/include/oox/export/chartexport.hxx index 31c52346c4e0..186ea756999c 100644 --- a/include/oox/export/chartexport.hxx +++ b/include/oox/export/chartexport.hxx @@ -141,7 +141,9 @@ private: void exportHiLowLines(); void exportUpDownBars(css::uno::Reference< css::chart2::XChartType > xChartType ); - void exportSeries( css::uno::Reference< css::chart2::XChartType > xChartType, sal_Int32& nAttachedAxis ); + void exportAllSeries(css::uno::Reference<css::chart2::XChartType> xChartType, sal_Int32& nAttachedAxis); + void exportSeries(css::uno::Reference< css::chart2::XChartType > xChartType, + css::uno::Sequence<css::uno::Reference<css::chart2::XDataSeries> >& rSeriesSeq, sal_Int32& nAttachedAxis ); void exportCandleStickSeries( const css::uno::Sequence< css::uno::Reference< |