summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-12-16 20:15:34 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-12-17 12:34:50 +0100
commit2c5f422e373a2d5830a2799ee09cb011fb266cc3 (patch)
tree042b69ed8e7aa3d0773fb2377637fe6584292bf0
parenta874bcbfb5960fd7290c4c8606d7e2cdef5d5151 (diff)
fix searched attribute for 3D chart shape, tdf114169
Change-Id: Ic0642d4b223db121bdf5968af73811af8571bd72 Reviewed-on: https://gerrit.libreoffice.org/46614 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> (cherry picked from commit b3a85fbc00bedba534a3f1ecfed9abe28b308247) Reviewed-on: https://gerrit.libreoffice.org/46628
-rw-r--r--oox/source/drawingml/chart/seriescontext.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/chart/seriescontext.cxx b/oox/source/drawingml/chart/seriescontext.cxx
index faccf0fb8390..a6763ad2fb74 100644
--- a/oox/source/drawingml/chart/seriescontext.cxx
+++ b/oox/source/drawingml/chart/seriescontext.cxx
@@ -474,7 +474,7 @@ ContextHandlerRef BarSeriesContext::onCreateContext( sal_Int32 nElement, const A
case C_TOKEN( pictureOptions ):
return new PictureOptionsContext( *this, mrModel.mxPicOptions.create(bMSO2007Doc) );
case C_TOKEN( shape ):
- mrModel.monShape = rAttribs.getToken( bMSO2007Doc ? XML_val : XML_box );
+ mrModel.monShape = rAttribs.getToken(XML_val);
return nullptr;
case C_TOKEN( trendline ):
return new TrendlineContext( *this, mrModel.maTrendlines.create(bMSO2007Doc) );