diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-06-06 08:00:58 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-06-06 08:01:25 +0300 |
commit | 60c8198fd98ebbcabcfd316203886d3e0b7317c7 (patch) | |
tree | 0306dd7993e0788530a75643935f7d034da91079 /sd | |
parent | 89d47f818a9628aacfd921a199e3830032018293 (diff) |
WaE: comparison of integers of different signs
Change-Id: I603e636b1a93107dfa65a2759ee510c49e03347e
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/eppt/epptso.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/eppt/epptso.cxx b/sd/source/filter/eppt/epptso.cxx index 03026ec763d8..edb4afa8c9ca 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 ); |