[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - toolkit/qa
Samuel Mehrbrodt (via logerrit)
logerrit at kemper.freedesktop.org
Thu Jun 11 08:24:37 UTC 2020
toolkit/qa/cppunit/EventContainer.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 6641686444c80547e8e1a78f22d8be78607080e3
Author: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
AuthorDate: Mon May 11 07:48:23 2020 +0200
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Thu Jun 11 10:24:05 2020 +0200
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 at cib.de>
(cherry picked from commit fa0d576378cafab396a3fb75b1dbe1905d5df9ce)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96090
Reviewed-by: Michael Stahl <michael.stahl at cib.de>
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]);
More information about the Libreoffice-commits
mailing list