[Libreoffice-commits] core.git: sd/source

Tor Lillqvist tml at iki.fi
Wed Jun 5 22:02:06 PDT 2013


 sd/source/filter/eppt/epptso.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 60c8198fd98ebbcabcfd316203886d3e0b7317c7
Author: Tor Lillqvist <tml at iki.fi>
Date:   Thu Jun 6 08:00:58 2013 +0300

    WaE: comparison of integers of different signs
    
    Change-Id: I603e636b1a93107dfa65a2759ee510c49e03347e

diff --git a/sd/source/filter/eppt/epptso.cxx b/sd/source/filter/eppt/epptso.cxx
index 03026ec..edb4afa 100644
--- a/sd/source/filter/eppt/epptso.cxx
+++ b/sd/source/filter/eppt/epptso.cxx
@@ -3646,7 +3646,7 @@ void PPTWriter::ImplCreateTable( uno::Reference< drawing::XShape >& rXShape, Esc
             std::vector< std::pair< sal_Int32, sal_Int32 > > aRows;
 
             awt::Point aPosition( MapPoint( rXShape->getPosition() ) );
-            sal_uInt32 nPosition = aPosition.X;
+            sal_Int32 nPosition = aPosition.X;
             for ( sal_Int32 x = 0; x < nColumnCount; x++ )
             {
                 uno::Reference< beans::XPropertySet > xPropSet( xColumns->getByIndex( x ), uno::UNO_QUERY_THROW );


More information about the Libreoffice-commits mailing list