Kaydet (Commit) febdbced authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Julien Nabet

Fix typo

Change-Id: I64cdf8361860f92300ede43ad13769267df8bd98
Reviewed-on: https://gerrit.libreoffice.org/73012
Tested-by: Jenkins
Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst e9dc63f9
......@@ -461,7 +461,7 @@ void CGMImpressOutAct::DrawEllipse( FloatPoint const & rCenter, FloatPoint const
uno::Any aAny( &eCircleKind, ::cppu::UnoType<drawing::CircleKind>::get() );
maXPropSet->setPropertyValue( "CircleKind", aAny );
long nXSize = static_cast<long>( rSize.X * 2.0 ); // strange behaviour with a awt::Size of 0
long nXSize = static_cast<long>( rSize.X * 2.0 ); // strange behaviour with an awt::Size of 0
long nYSize = static_cast<long>( rSize.Y * 2.0 );
if ( nXSize < 1 )
nXSize = 1;
......@@ -487,7 +487,7 @@ void CGMImpressOutAct::DrawEllipticalArc( FloatPoint const & rCenter, FloatPoint
drawing::CircleKind eCircleKind;
long nXSize = static_cast<long>( rSize.X * 2.0 ); // strange behaviour with a awt::Size of 0
long nXSize = static_cast<long>( rSize.X * 2.0 ); // strange behaviour with an awt::Size of 0
long nYSize = static_cast<long>( rSize.Y * 2.0 );
if ( nXSize < 1 )
nXSize = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment