summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-07-14 00:27:32 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-07-14 00:27:32 +0200
commit9caf0b7cfe9b7fae046940c5d5bd0049aa585d4a (patch)
treed1651da7e87d682728eae20adc10225df769858a
parent6b15221e13f66fb81a24202ec464e305e38c0b89 (diff)
fix ambiguous template parameter in test
Change-Id: Icb574b66c184ba95de0e925393c898d2cfc1e479
-rw-r--r--sw/qa/extras/ooxmlexport/ooxmlexport.cxx2
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);