diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-04-20 05:09:37 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-04-21 06:44:30 +0200 |
commit | 2a1b49b4ad569dd2af8f777aae578484f55d4b9a (patch) | |
tree | 29ba0efc0ec6a7656e35b16304b68ae33817895a /oox | |
parent | 48d7336ff68a46b814586c8e9ce32690b4d1ade9 (diff) |
fix applyToSides MSO 2007 vs OOXML
Change-Id: I3cda1a74695aefa34f2749b29af5409db83f2946
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/chart/seriescontext.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/oox/source/drawingml/chart/seriescontext.cxx b/oox/source/drawingml/chart/seriescontext.cxx index 6f0fb7b652af..b75f05c97a87 100644 --- a/oox/source/drawingml/chart/seriescontext.cxx +++ b/oox/source/drawingml/chart/seriescontext.cxx @@ -167,8 +167,7 @@ ContextHandlerRef PictureOptionsContext::onCreateContext( sal_Int32 nElement, co mrModel.mbApplyToFront = rAttribs.getBool( XML_val, !bMSO2007Doc ); return 0; case C_TOKEN( applyToSides ): - // default is 'false', not 'true' as specified - mrModel.mbApplyToSides = rAttribs.getBool( XML_val, false ); + mrModel.mbApplyToSides = rAttribs.getBool( XML_val, !bMSO2007Doc ); return 0; case C_TOKEN( pictureFormat ): mrModel.mnPictureFormat = rAttribs.getToken( XML_val, XML_stretch ); |