diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2011-05-16 23:22:50 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2011-05-16 23:22:50 +0200 |
commit | 0b26358b96e77efffed70d5b7c9a50cdd12da2a8 (patch) | |
tree | 0ad7302211e60fc1a0938517ea92a19c1c8db757 /slideshow | |
parent | 0183c94cafa2b61217f018f51cac84667aa6fbfb (diff) |
WaE - add explicit casting (decimal-types → integer types)
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/slide/slideimpl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow/source/engine/slide/slideimpl.cxx b/slideshow/source/engine/slide/slideimpl.cxx index eb2ee6c1bc57..4c749ee9a307 100644 --- a/slideshow/source/engine/slide/slideimpl.cxx +++ b/slideshow/source/engine/slide/slideimpl.cxx @@ -1158,7 +1158,7 @@ bool SlideImpl::loadShapes() } addPolygons(aMPShapesFunctor.getPolygons()); - nCurrCount = aMPShapesFunctor.getImportedShapesCount(); + nCurrCount = static_cast<sal_Int32>(aMPShapesFunctor.getImportedShapesCount()); } catch( uno::RuntimeException& ) { |