summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2020-05-11 07:48:23 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-06-11 10:24:05 +0200
commit6641686444c80547e8e1a78f22d8be78607080e3 (patch)
treee80a539d43e845841a611d76dc00643f9a1c4eab /toolkit
parentce7ced5b7cbadb980adbb3998efa15a369d5a544 (diff)
Fix 32bit linux build
Change-Id: I4faf3fb20c632163f98264d162bbf85f80b3603d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93797 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> (cherry picked from commit fa0d576378cafab396a3fb75b1dbe1905d5df9ce) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96090 Reviewed-by: Michael Stahl <michael.stahl@cib.de>
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/qa/cppunit/EventContainer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/qa/cppunit/EventContainer.cxx b/toolkit/qa/cppunit/EventContainer.cxx
index 300c8e5adb74..97a125c60824 100644
--- a/toolkit/qa/cppunit/EventContainer.cxx
+++ b/toolkit/qa/cppunit/EventContainer.cxx
@@ -70,7 +70,7 @@ CPPUNIT_TEST_FIXTURE(EventContainerTest, testInsertOrder)
Sequence<OUString> aEventNames(xEvents->getElementNames());
sal_Int32 nEventCount = aEventNames.getLength();
- CPPUNIT_ASSERT_EQUAL(4, nEventCount);
+ CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(4), nEventCount);
CPPUNIT_ASSERT_EQUAL(OUString("b"), aEventNames[0]);
CPPUNIT_ASSERT_EQUAL(OUString("a"), aEventNames[1]);