From 0b26358b96e77efffed70d5b7c9a50cdd12da2a8 Mon Sep 17 00:00:00 2001 From: Christian Lohmaier Date: Mon, 16 May 2011 23:22:50 +0200 Subject: WaE - add explicit casting (decimal-types → integer types) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- slideshow/source/engine/slide/slideimpl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'slideshow') 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(aMPShapesFunctor.getImportedShapesCount()); } catch( uno::RuntimeException& ) { -- cgit