summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--oox/source/export/chartexport.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx
index 75fb6a8b37ba..ab97e50b1051 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -2734,6 +2734,16 @@ void ChartExport::exportView3D()
XML_val, I32S( nRotationY ),
FSEND );
}
+ // rAngAx
+ if( GetProperty( xPropSet, "RightAngledAxes" ) )
+ {
+ sal_Bool bRightAngled = sal_False;
+ mAny >>= bRightAngled;
+ const char* sRightAngled = bRightAngled ? "1":"0";
+ pFS->singleElement( FSNS( XML_c, XML_rAngAx ),
+ XML_val, sRightAngled,
+ FSEND );
+ }
// perspective
if( GetProperty( xPropSet, "Perspective" ) )
{
@@ -2745,16 +2755,6 @@ void ChartExport::exportView3D()
XML_val, I32S( nPerspective ),
FSEND );
}
- // rAngAx
- if( GetProperty( xPropSet, "RightAngledAxes" ) )
- {
- sal_Bool bRightAngled = sal_False;
- mAny >>= bRightAngled;
- const char* sRightAngled = bRightAngled ? "1":"0";
- pFS->singleElement( FSNS( XML_c, XML_rAngAx ),
- XML_val, sRightAngled,
- FSEND );
- }
pFS->endElement( FSNS( XML_c, XML_view3D ) );
}