diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-04-20 05:23:27 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-04-21 06:44:32 +0200 |
commit | 2e4b736b8a245a03ff20dbc3b0c9cf3be2d1ae01 (patch) | |
tree | 6ffdd11e13bb1ca290816eafd3efcd79fc835490 /oox | |
parent | 090960a1eb8bff1cf74f041690cd7258070ba312 (diff) |
fix marker MSO 2007 vs OOXML
Change-Id: I7dc2b5b99fa10f13b2dc345850af80689db6480d
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/chart/typegroupcontext.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/oox/source/drawingml/chart/typegroupcontext.cxx b/oox/source/drawingml/chart/typegroupcontext.cxx index f644c7cf85f3..0bf36694d841 100644 --- a/oox/source/drawingml/chart/typegroupcontext.cxx +++ b/oox/source/drawingml/chart/typegroupcontext.cxx @@ -213,8 +213,7 @@ ContextHandlerRef LineTypeGroupContext::onCreateContext( sal_Int32 nElement, con case C_TOKEN( hiLowLines ): return new ShapePrWrapperContext( *this, mrModel.mxHiLowLines.create() ); case C_TOKEN( marker ): - // default is 'false', not 'true' as specified - mrModel.mbShowMarker = rAttribs.getBool( XML_val, false ); + mrModel.mbShowMarker = rAttribs.getBool( XML_val, !bMSO2007Doc ); return 0; case C_TOKEN( ser ): return new LineSeriesContext( *this, mrModel.maSeries.create() ); |