summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-12-01 04:45:36 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-12-01 04:47:24 +0100
commit120dca2608a23f70b7ab8fc658a10123eb08e58a (patch)
treef8b970cc043a21261e9c4a1cef2b036d75b328a7 /oox
parent4b0d5b7cb08148a53ff7f64c48f52a3291b7a0c3 (diff)
fix 2D vs 3D coordinatesystem regression, fdo#67300
regression from 088e86b865062dd4cc5ba0c85c6068dea62238db
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/chart/typegroupconverter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/drawingml/chart/typegroupconverter.cxx b/oox/source/drawingml/chart/typegroupconverter.cxx
index bf8e16669df4..b87fc455200c 100644
--- a/oox/source/drawingml/chart/typegroupconverter.cxx
+++ b/oox/source/drawingml/chart/typegroupconverter.cxx
@@ -248,9 +248,9 @@ Reference< XCoordinateSystem > TypeGroupConverter::createCoordinateSystem()
if( maTypeInfo.mbPolarCoordSystem )
{
if( mb3dChart )
- xCoordSystem = css::chart2::PolarCoordinateSystem2d::create(xContext);
- else
xCoordSystem = css::chart2::PolarCoordinateSystem3d::create(xContext);
+ else
+ xCoordSystem = css::chart2::PolarCoordinateSystem2d::create(xContext);
}
else
{