diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-12-02 07:54:10 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-12-02 07:54:10 +0200 |
commit | 9bdde8b420265c7e77f4b310fb4c1214b715aa72 (patch) | |
tree | 3fb87fb78c34410f2ffb88bb1fbed5b6d87864cc /editeng/qa | |
parent | 42a3e02f1aad1cd0f35098637b6c548e703edc70 (diff) |
Adapt to int/sal_Int32 mismatch on 32-bit build
Change-Id: Ifef81d53bee4241be3c0dd6b7ddb2c1bbf419b5e
Diffstat (limited to 'editeng/qa')
-rw-r--r-- | editeng/qa/unit/core-test.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/qa/unit/core-test.cxx b/editeng/qa/unit/core-test.cxx index ae4a946bcd0f..4674311c09b4 100644 --- a/editeng/qa/unit/core-test.cxx +++ b/editeng/qa/unit/core-test.cxx @@ -578,7 +578,7 @@ void Test::testSectionAttributes() { aEngine.Clear(); aEngine.SetText("one\ntwo"); - CPPUNIT_ASSERT_EQUAL(2, aEngine.GetParagraphCount()); + CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(2), aEngine.GetParagraphCount()); // embolden 2nd paragraph pSet.reset(new SfxItemSet(aEngine.GetEmptyItemSet())); |