Author: jsc Date: Tue Feb 26 09:24:50 2013 New Revision: 1450095 URL: http://svn.apache.org/r1450095 Log: fix warning as error, comparison uInt/Int
Modified: openoffice/trunk/main/sd/source/filter/eppt/epptso.cxx Modified: openoffice/trunk/main/sd/source/filter/eppt/epptso.cxx URL: http://svn.apache.org/viewvc/openoffice/trunk/main/sd/source/filter/eppt/epptso.cxx?rev=1450095&r1=1450094&r2=1450095&view=diff ============================================================================== --- openoffice/trunk/main/sd/source/filter/eppt/epptso.cxx (original) +++ openoffice/trunk/main/sd/source/filter/eppt/epptso.cxx Tue Feb 26 09:24:50 2013 @@ -5746,7 +5746,7 @@ void PPTWriter::ImplCreateTable( uno::Re std::vector< std::pair< sal_Int32, sal_Int32 > > aRows; awt::Point aPosition( ImplMapPoint( 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 );