diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 02:44:34 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 02:44:34 +0000 |
commit | 027ac988ad4ea3a03eda8aa9812425557b29765a (patch) | |
tree | 7fcc664e4c0aff71d1c3c2d905d498323e3c03d2 /basegfx | |
parent | 8135c666aab3d83da58b2de26de682fc176e5ba0 (diff) |
INTEGRATION: CWS warnings01 (1.3.22); FILE MERGED
2005/11/07 19:36:28 pl 1.3.22.4: RESYNC: (1.4-1.5); FILE MERGED
2005/10/24 16:15:02 pl 1.3.22.3: #i55991# remove warnings for solaris platform
2005/09/22 23:48:01 sb 1.3.22.2: RESYNC: (1.3-1.4); FILE MERGED
2005/09/01 19:39:30 thb 1.3.22.1: #i53898# Removed dead code; added missing case statement for enum switch (plus an asserted default); corrected assignment of ptr type to integer type
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx b/basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx index 4d2f9c7986bb..83b684af32bf 100644 --- a/basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx +++ b/basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx @@ -4,9 +4,9 @@ * * $RCSfile: b2dpolypolygonrasterconverter.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: kz $ $Date: 2005-11-02 13:58:45 $ + * last change: $Author: hr $ $Date: 2006-06-20 03:44:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -81,7 +81,7 @@ namespace basegfx private: bool resize( sal_uInt32 nNumElements ); - void reset_indices( void ); + inline void reset_indices( void ); bool prepareCounters( const float *pInput, sal_uInt32 nNumElements, sal_uInt32 dwStride ); }; @@ -614,8 +614,8 @@ namespace basegfx case FillRule_EVEN_ODD: // process each span in current scanline, with // even-odd fill rule - for( ::std::size_t i(0), nLen(aActiveVertices.size()); - i+1 < nLen; + for( ::std::size_t i(0), nLength(aActiveVertices.size()); + i+1 < nLength; ++i ) { sal_uInt32 nIndex = sorted[i]; @@ -644,8 +644,8 @@ namespace basegfx // process each span in current scanline, with // non-zero winding numbe fill rule sal_Int32 nWindingNumber(0); - for( ::std::size_t i(0), nLen(aActiveVertices.size()); - i+1 < nLen; + for( ::std::size_t i(0), nLength(aActiveVertices.size()); + i+1 < nLength; ++i ) { sal_uInt32 nIndex = sorted[i]; |