summaryrefslogtreecommitdiff
path: root/basebmp/source/polypolygonrenderer.cxx
diff options
context:
space:
mode:
authorThorsten Behrens <thb@openoffice.org>2006-07-28 11:43:20 +0000
committerThorsten Behrens <thb@openoffice.org>2006-07-28 11:43:20 +0000
commitfaa4280d0a138f79d45df0a56ac31dd0fcd790e9 (patch)
tree4d0ae218ea1ab9ceeee7e07fde22dc282f56320a /basebmp/source/polypolygonrenderer.cxx
parent8ce0bf508e47bb382088ffbb427bd6154a14d557 (diff)
#i65904# Made code compile warning-free for MSVC; removed inline statement from the longer functions
Diffstat (limited to 'basebmp/source/polypolygonrenderer.cxx')
-rw-r--r--basebmp/source/polypolygonrenderer.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basebmp/source/polypolygonrenderer.cxx b/basebmp/source/polypolygonrenderer.cxx
index c94e7fae137e..e30b62f1b531 100644
--- a/basebmp/source/polypolygonrenderer.cxx
+++ b/basebmp/source/polypolygonrenderer.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: polypolygonrenderer.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: thb $ $Date: 2006-07-27 11:35:31 $
+ * last change: $Author: thb $ $Date: 2006-07-28 12:43:20 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -46,7 +46,7 @@ namespace detail
basegfx::B2DPolyPolygon const& rPolyPoly,
sal_Int32 nMinY )
{
- sal_uInt32 const nNumScanlines( rGET.size() );
+ sal_Int32 const nNumScanlines( (sal_Int32)rGET.size() );
// add all polygons to GET
for( sal_uInt32 i(0), nCount(rPolyPoly.count());