diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-12-02 08:21:31 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-12-02 08:21:31 +0200 |
commit | f1e7489d98a1d1fd9e261e4a7e83fff03e5daf63 (patch) | |
tree | 7ea8a62fd966fa10cbfaf2a534c52e5f9822156a /editeng/qa | |
parent | 8414915f477b33ed81768d69864bab6a136607fa (diff) |
Adapt to int/sal_Int32 mismatch on 32-bit build
Change-Id: I9c5cb458ea7595c1b623ce14ed58fd3d5b3d961e
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 4674311c09b4..81d5ab767281 100644 --- a/editeng/qa/unit/core-test.cxx +++ b/editeng/qa/unit/core-test.cxx @@ -591,7 +591,7 @@ void Test::testSectionAttributes() // now delete & join the paragraphs - this is fdo#85496 scenario aEngine.QuickDelete(ESelection(0,0,1,3)); - CPPUNIT_ASSERT_EQUAL(1, aEngine.GetParagraphCount()); + CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(1), aEngine.GetParagraphCount()); boost::scoped_ptr<EditTextObject> pEditText(aEngine.CreateTextObject()); CPPUNIT_ASSERT_MESSAGE("Failed to create text object.", pEditText.get()); |