summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-12-02 08:21:31 +0200
committerMichael Stahl <mstahl@redhat.com>2014-12-02 17:51:54 +0100
commitf8452c55c7edef28a356775b61d18b92cfbb3402 (patch)
treefd9e10c04b85c5e10d49658208f38c1cc69549d4 /editeng
parent0254d9ece49917d691c92d898de46ec40e2b8cd4 (diff)
Adapt to int/sal_Int32 mismatch on 32-bit build
Change-Id: I9c5cb458ea7595c1b623ce14ed58fd3d5b3d961e (cherry picked from commit f1e7489d98a1d1fd9e261e4a7e83fff03e5daf63)
Diffstat (limited to 'editeng')
-rw-r--r--editeng/qa/unit/core-test.cxx2
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());