summaryrefslogtreecommitdiff
path: root/sw/qa
diff options
context:
space:
mode:
authorRene Engelhard <rene@debian.org>2021-06-18 06:14:09 +0200
committerRené Engelhard <rene@debian.org>2021-06-18 17:54:35 +0200
commit51754ca5349d7bf655d57ded37381188d0bc4bcf (patch)
tree6736544e614478ee84e8b6e45bac9c1fb9780550 /sw/qa
parentf2488a301621fadee7713f3e886dc6f756f745bb (diff)
more 32bit build fixes
Change-Id: I5906ef714a482afffe40e59e90fd709fe857d3ff Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117404 Tested-by: Jenkins Tested-by: René Engelhard <rene@debian.org> Reviewed-by: René Engelhard <rene@debian.org>
Diffstat (limited to 'sw/qa')
-rw-r--r--sw/qa/extras/tiledrendering/tiledrendering.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/qa/extras/tiledrendering/tiledrendering.cxx b/sw/qa/extras/tiledrendering/tiledrendering.cxx
index b991f06b3c0a..54f4ecc7b9a9 100644
--- a/sw/qa/extras/tiledrendering/tiledrendering.cxx
+++ b/sw/qa/extras/tiledrendering/tiledrendering.cxx
@@ -2860,7 +2860,7 @@ void SwTiledRenderingTest::testDropDownFormFieldButtonNoSelection()
}
}
-static void lcl_extractHandleParameters(const OString& selection, int& id, int& x, int& y)
+static void lcl_extractHandleParameters(const OString& selection, sal_Int32& id, sal_Int32& x, sal_Int32& y)
{
OString extraInfo = selection.copy(selection.indexOf("{"));
std::stringstream aStream(extraInfo.getStr());
@@ -2892,10 +2892,10 @@ void SwTiledRenderingTest::testMoveShapeHandle()
CPPUNIT_ASSERT(!m_ShapeSelection.isEmpty());
{
- int id, x, y;
+ sal_Int32 id, x, y;
lcl_extractHandleParameters(m_ShapeSelection, id, x ,y);
- int oldX = x;
- int oldY = y;
+ sal_Int32 oldX = x;
+ sal_Int32 oldY = y;
uno::Sequence<beans::PropertyValue> aPropertyValues(comphelper::InitPropertySequence(
{
{"HandleNum", uno::makeAny(id)},