[Libreoffice-commits] .: sw/qa

Tor Lillqvist tml at kemper.freedesktop.org
Tue Feb 14 01:01:08 PST 2012


 sw/qa/extras/rtftok/rtftok.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 49a4b4c32bda86b97ef48d1d2ce9bf8f02d3e2e3
Author: Tor Lillqvist <tlillqvist at suse.com>
Date:   Tue Feb 14 10:55:50 2012 +0200

    Fix int/sal_Int32 ambiguity

diff --git a/sw/qa/extras/rtftok/rtftok.cxx b/sw/qa/extras/rtftok/rtftok.cxx
index df2966f..9afb4f2 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);


More information about the Libreoffice-commits mailing list