summaryrefslogtreecommitdiff
path: root/slideshow/source
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2011-05-16 23:22:50 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2011-05-16 23:22:50 +0200
commitc0255f1178b11054621b182db304fbb45384660f (patch)
tree6806843d86fcf03526bf0beb97b72c0acc624a6e /slideshow/source
parentdcaf75aa8f530aee9699ca10a73a01312699d66a (diff)
WaE - add explicit casting (decimal-types → integer types)
Diffstat (limited to 'slideshow/source')
-rw-r--r--slideshow/source/engine/slide/slideimpl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow/source/engine/slide/slideimpl.cxx b/slideshow/source/engine/slide/slideimpl.cxx
index 6876ca439..82491dacd 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& )
{