diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-02-14 10:55:50 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-02-14 10:55:50 +0200 |
commit | 49a4b4c32bda86b97ef48d1d2ce9bf8f02d3e2e3 (patch) | |
tree | ccebe88b60cb7cb8248f3ab0ebb2d0804a6680b1 /sw | |
parent | b87e6be543b3daf73edb95012b87dbf95a918b95 (diff) |
Fix int/sal_Int32 ambiguity
Diffstat (limited to 'sw')
-rw-r--r-- | sw/qa/extras/rtftok/rtftok.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/rtftok/rtftok.cxx b/sw/qa/extras/rtftok/rtftok.cxx index df2966fd5669..9afb4f2033a4 100644 --- a/sw/qa/extras/rtftok/rtftok.cxx +++ b/sw/qa/extras/rtftok/rtftok.cxx @@ -156,7 +156,7 @@ void RtfModelTest::testFdo45543() aBuf.append(xRange->getString()); } } - CPPUNIT_ASSERT_EQUAL(5, aBuf.getLength()); + CPPUNIT_ASSERT_EQUAL((sal_Int32)5, aBuf.getLength()); } CPPUNIT_TEST_SUITE_REGISTRATION(RtfModelTest); |