[Libreoffice-commits] core.git: chart2/qa

Tor Lillqvist tml at collabora.com
Tue Nov 26 01:39:04 PST 2013


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

New commits:
commit 40e98f439f892af47b508968aaa25c2327b97868
Author: Tor Lillqvist <tml at collabora.com>
Date:   Tue Nov 26 11:38:10 2013 +0200

    Blind fix for sal_Int32/int confusion
    
    Change-Id: Ia052922ec323220b8785b1a156e5bc2fbf44c11b

diff --git a/chart2/qa/extras/chart2export.cxx b/chart2/qa/extras/chart2export.cxx
index b28034b..fa4d619 100644
--- a/chart2/qa/extras/chart2export.cxx
+++ b/chart2/qa/extras/chart2export.cxx
@@ -176,7 +176,7 @@ void checkTrendlinesInChart(uno::Reference< chart2::XChartDocument > xChartDoc)
     CPPUNIT_ASSERT( xRegressionCurveContainer.is() );
 
     Sequence< Reference< chart2::XRegressionCurve > > xRegressionCurveSequence = xRegressionCurveContainer->getRegressionCurves();
-    CPPUNIT_ASSERT_EQUAL(3, xRegressionCurveSequence.getLength());
+    CPPUNIT_ASSERT_EQUAL((sal_Int32) 3, xRegressionCurveSequence.getLength());
 
     Reference<chart2::XRegressionCurve> xCurve;
 


More information about the Libreoffice-commits mailing list