[Libreoffice-commits] core.git: sw/qa
Stephan Bergmann
sbergman at redhat.com
Fri Jan 19 08:06:56 UTC 2018
sw/qa/extras/tiledrendering/tiledrendering.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit cc2ee044d9fc34d112842ca6e4150567238c7e4f
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Fri Jan 19 09:05:45 2018 +0100
Blind fix for sal_Int32 = long
...after 252ce90e39648c47bcfdb39547d0ac82bacdbae6 "sw lokit: add page syles to
header & footer"
Change-Id: Ia0b3f8194d889fc1022da08bac06c85cbb22dd3b
diff --git a/sw/qa/extras/tiledrendering/tiledrendering.cxx b/sw/qa/extras/tiledrendering/tiledrendering.cxx
index 3a9c1c6f9985..3cbb48c6f26e 100644
--- a/sw/qa/extras/tiledrendering/tiledrendering.cxx
+++ b/sw/qa/extras/tiledrendering/tiledrendering.cxx
@@ -1953,7 +1953,7 @@ void checkPageHeaderOrFooter(const SfxViewShell* pViewShell, sal_uInt16 nWhich,
pListItem->GetStringList(aSeq);
if (bValue)
{
- CPPUNIT_ASSERT_EQUAL(1, aSeq.getLength());
+ CPPUNIT_ASSERT_EQUAL(sal_Int32(1), aSeq.getLength());
CPPUNIT_ASSERT_EQUAL(OUString("Default Style"), aSeq[0]);
}
else
More information about the Libreoffice-commits
mailing list