From 8bc951daf79decbd8a599a409c6d33c5456710e0 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 26 Jan 2018 09:50:06 +0200 Subject: long->sal_Int32 in tools/gen.hxx which triggered a lot of changes in sw/ Change-Id: Ia2aa22ea3f76463a85ea077a411246fcfed00bf6 Reviewed-on: https://gerrit.libreoffice.org/48806 Tested-by: Jenkins Reviewed-by: Noel Grandin --- chart2/source/controller/main/ChartController_Window.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'chart2/source/controller') diff --git a/chart2/source/controller/main/ChartController_Window.cxx b/chart2/source/controller/main/ChartController_Window.cxx index 83dfc4a1a0c0..4225a269c535 100644 --- a/chart2/source/controller/main/ChartController_Window.cxx +++ b/chart2/source/controller/main/ChartController_Window.cxx @@ -2035,10 +2035,10 @@ void ChartController::sendPopupRequest(OUString const & rCID, tools::Rectangle a sal_Int32 nDimensionIndex = sDimensionIndex.toInt32(); awt::Rectangle xRectangle { - sal_Int32(aRectangle.Left()), - sal_Int32(aRectangle.Top()), - sal_Int32(aRectangle.GetWidth()), - sal_Int32(aRectangle.GetHeight()) + aRectangle.Left(), + aRectangle.Top(), + aRectangle.GetWidth(), + aRectangle.GetHeight() }; uno::Sequence aCallbackData = comphelper::InitPropertySequence( -- cgit