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

New commits:
commit 9caf0b7cfe9b7fae046940c5d5bd0049aa585d4a
Author: Markus Mohrhard <markus.mohrh...@googlemail.com>
Date:   Sat Jul 14 00:27:32 2012 +0200

    fix ambiguous template parameter in test
    
    Change-Id: Icb574b66c184ba95de0e925393c898d2cfc1e479

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
index 16f9e31..859cc89 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
@@ -88,7 +88,7 @@ void Test::defaultTabStopNotInStyles()
     uno::Reference< beans::XPropertySet > properties( 
paragraphStyles->getByName( "Standard" ), uno::UNO_QUERY );
     uno::Sequence< style::TabStop > stops = getProperty< uno::Sequence< 
style::TabStop > >(
         paragraphStyles->getByName( "Standard" ), "ParaTabStops" );
-    CPPUNIT_ASSERT_EQUAL( 0, stops.getLength());
+    CPPUNIT_ASSERT_EQUAL( static_cast<sal_Int32>(0), stops.getLength());
 }
 
 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to