diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-05-12 02:33:08 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-05-12 20:04:48 +0200 |
commit | 1573315ec978b7f53a8babeb7ad44e104896209e (patch) | |
tree | 40921d62e91cc9addf199d8cfbf0b3c74b18f977 /include/oox/export | |
parent | aec34850ed7d27938bee2a3a7b8761e9eb74acdc (diff) |
export each axis only once non-deleted, related tdf#84347
Change-Id: Ia0e23faf43fd266b8314f807b77423e9a3e15797
Diffstat (limited to 'include/oox/export')
-rw-r--r-- | include/oox/export/chartexport.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/oox/export/chartexport.hxx b/include/oox/export/chartexport.hxx index 186ea756999c..c043fd7157cd 100644 --- a/include/oox/export/chartexport.hxx +++ b/include/oox/export/chartexport.hxx @@ -30,6 +30,8 @@ #include <com/sun/star/chart2/RelativePosition.hpp> #include <com/sun/star/chart2/RelativeSize.hpp> +#include <set> + namespace com { namespace sun { namespace star { namespace chart { class XDiagram; @@ -103,6 +105,8 @@ private: bool mbStacked; bool mbPercent; + std::set<sal_Int32> maExportedAxis; + private: sal_Int32 getChartType(); |