[Libreoffice-commits] core.git: filter/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Mon May 27 07:36:15 UTC 2019
filter/source/graphicfilter/icgm/actimpr.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit febdbced25bfeddab3e8b65a5483c044a0ed220d
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Tue May 14 21:24:17 2019 +0000
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Mon May 27 09:35:13 2019 +0200
Fix typo
Change-Id: I64cdf8361860f92300ede43ad13769267df8bd98
Reviewed-on: https://gerrit.libreoffice.org/73012
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/filter/source/graphicfilter/icgm/actimpr.cxx b/filter/source/graphicfilter/icgm/actimpr.cxx
index 3415656a35f3..57a9a409fb5a 100644
--- a/filter/source/graphicfilter/icgm/actimpr.cxx
+++ b/filter/source/graphicfilter/icgm/actimpr.cxx
@@ -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;
More information about the Libreoffice-commits
mailing list