diff options
-rw-r--r-- | sw/qa/extras/ooxmlexport/ooxmlexport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx index 16f9e31bdb4d..859cc89615ad 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); |