diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-05-02 20:01:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-05-03 10:00:40 +0200 |
commit | 5e66cb1cfc747b118d480194d88737d54197a800 (patch) | |
tree | fd8fe0ceaf92a0795a499aefb400dc815720d5e6 /svtools | |
parent | 8c3ba8ac759e661f9402e0b5651d7e1914e72b66 (diff) |
sal_uLong->sal_Int32 in IMapCircleObject
Change-Id: I47f4901d38cfb14011a0b7db4cc38203e3e14e30
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115009
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/uno/unoimap.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/uno/unoimap.cxx b/svtools/source/uno/unoimap.cxx index f87973281f45..9ac7eb8e03d5 100644 --- a/svtools/source/uno/unoimap.cxx +++ b/svtools/source/uno/unoimap.cxx @@ -218,7 +218,7 @@ SvUnoImageMapObject::SvUnoImageMapObject( const IMapObject& rMapObject, const Sv break; case IMapObjectType::Circle: { - mnRadius = static_cast<sal_Int32>(static_cast<const IMapCircleObject*>(&rMapObject)->GetRadius(false)); + mnRadius = static_cast<const IMapCircleObject*>(&rMapObject)->GetRadius(false); const Point aPoint( static_cast<const IMapCircleObject*>(&rMapObject)->GetCenter(false) ); maCenter.X = aPoint.X(); |