summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-05-14 21:24:17 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-05-27 09:35:13 +0200
commitfebdbced25bfeddab3e8b65a5483c044a0ed220d (patch)
treeca1b257f7699c9c7463a6da589973bbbed90b92d /filter
parente9dc63f90dd785264329c3ca7e9bf900fe16fbee (diff)
Fix typo
Change-Id: I64cdf8361860f92300ede43ad13769267df8bd98 Reviewed-on: https://gerrit.libreoffice.org/73012 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/graphicfilter/icgm/actimpr.cxx4
1 files changed, 2 insertions, 2 deletions
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;