diff options
author | Christian Lippka <christian.lippka@sun.com> | 2010-06-22 13:38:49 +0200 |
---|---|---|
committer | Christian Lippka <christian.lippka@sun.com> | 2010-06-22 13:38:49 +0200 |
commit | aadcf75a9c3c46385e5f36fc824b1103888bb7b9 (patch) | |
tree | 420f75b035c55673a7711d0b6bde693ca45534d3 /slideshow/source | |
parent | aa366fe3f135659ebd9bfe516f5efafa6e4f7b2d (diff) | |
parent | 8c75156a84a5088506c49101efad199dc7b8d05e (diff) |
cws avmedia102: rebase m83
Diffstat (limited to 'slideshow/source')
-rw-r--r-- | slideshow/source/engine/slideshowimpl.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/slideshow/source/engine/slideshowimpl.cxx b/slideshow/source/engine/slideshowimpl.cxx index d2af8c0daaed..d736c3f52d64 100644 --- a/slideshow/source/engine/slideshowimpl.cxx +++ b/slideshow/source/engine/slideshowimpl.cxx @@ -1545,7 +1545,9 @@ void SlideShowImpl::registerUserPaintPolygons( const uno::Reference< lang::XMult for( sal_uInt32 n = 0; n < nPoints; n++ ) { //Create a point from the polygon - *pInnerSequence++ = awt::Point( aPoly.getB2DPoint(n).getX(), aPoly.getB2DPoint(n).getY()); + *pInnerSequence++ = awt::Point( + basegfx::fround(aPoly.getB2DPoint(n).getX()), + basegfx::fround(aPoly.getB2DPoint(n).getY())); } //Fill the properties |