diff options
author | Balazs Varga <balazs.varga991@gmail.com> | 2019-10-08 13:29:12 +0200 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2019-10-12 09:23:28 +0200 |
commit | e0b0502516a10181bbd1737b93b38b2bba4c98e8 (patch) | |
tree | b0571d34dcd0e87d020795c2cd4f016d0ec3b2e7 /oox/inc | |
parent | 2ec58f883bd4d7fe0ac1b716d1abc05cb2b16b4e (diff) |
tdf#128016 Chart OOXML Import: fix duplicated category labels
Do not create category labels if the category axis is deleted.
Regression from commit: fa0a981af41a2606541eec1cb20a379a739691e0
(tdf#114166 DOCX chart import: fix missing complex categories)
Change-Id: If357b95956fccbbc6142879f22ebe1b6d715e850
Reviewed-on: https://gerrit.libreoffice.org/80443
Tested-by: Jenkins
Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'oox/inc')
-rw-r--r-- | oox/inc/drawingml/chart/typegroupmodel.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/oox/inc/drawingml/chart/typegroupmodel.hxx b/oox/inc/drawingml/chart/typegroupmodel.hxx index 031ecddf54aa..0803bf4e7a82 100644 --- a/oox/inc/drawingml/chart/typegroupmodel.hxx +++ b/oox/inc/drawingml/chart/typegroupmodel.hxx @@ -76,6 +76,7 @@ struct TypeGroupModel bool mbSmooth; /// True = smooth lines in line charts. bool mbVaryColors; /// True = different automatic colors for each point. bool mbWireframe; /// True = wireframe surface chart, false = filled surface chart. + bool mbCatAxisVisible; /// True = Category axis is visible. explicit TypeGroupModel( sal_Int32 nTypeId, bool bMSO2007Doc ); ~TypeGroupModel(); |