diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 20:46:28 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 20:46:28 +0000 |
commit | dfd196d4f62e789416471c8870eada4e46f97868 (patch) | |
tree | 5f5e521676646cd75759570ae33ce27194acde32 /goodies | |
parent | 42988c32851eaa2d4dfa702df52f182f3b59ab63 (diff) |
INTEGRATION: CWS warnings01 (1.7.26); FILE MERGED
2005/11/16 16:42:17 pl 1.7.26.1: #i55991# removed warnings
Diffstat (limited to 'goodies')
-rw-r--r-- | goodies/source/filter.vcl/idxf/dxf2mtf.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/goodies/source/filter.vcl/idxf/dxf2mtf.cxx b/goodies/source/filter.vcl/idxf/dxf2mtf.cxx index 6cf10a9ea925..c8a9562cc49f 100644 --- a/goodies/source/filter.vcl/idxf/dxf2mtf.cxx +++ b/goodies/source/filter.vcl/idxf/dxf2mtf.cxx @@ -4,9 +4,9 @@ * * $RCSfile: dxf2mtf.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: rt $ $Date: 2005-09-09 02:53:47 $ + * last change: $Author: hr $ $Date: 2006-06-19 21:46:28 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -129,7 +129,7 @@ PenStyle DXF2GDIMetaFile::GetEntityPStyle(const DXFBasicEntity & rE) } -BOOL DXF2GDIMetaFile::SetLineAttribute(const DXFBasicEntity & rE, ULONG nWidth) +BOOL DXF2GDIMetaFile::SetLineAttribute(const DXFBasicEntity & rE, ULONG /*nWidth*/) { long nColor; Color aColor; @@ -171,7 +171,7 @@ BOOL DXF2GDIMetaFile::SetAreaAttribute(const DXFBasicEntity & rE) } -BOOL DXF2GDIMetaFile::SetFontAttribute(const DXFBasicEntity & rE, short nAngle, USHORT nHeight, double fWidthScale) +BOOL DXF2GDIMetaFile::SetFontAttribute(const DXFBasicEntity & rE, short nAngle, USHORT nHeight, double /*fWidthScale*/) { long nColor; Color aColor; @@ -549,12 +549,12 @@ void DXF2GDIMetaFile::DrawHatchEntity(const DXFHatchEntity & rE, const DXFTransf if ( rE.nBoundaryPathCount ) { SetAreaAttribute( rE ); - sal_Int32 i = 0; + sal_Int32 j = 0; PolyPolygon aPolyPoly; - for ( i = 0; i < rE.nBoundaryPathCount; i++ ) + for ( j = 0; j < rE.nBoundaryPathCount; j++ ) { DXFPointArray aPtAry; - const DXFBoundaryPathData& rPathData = rE.pBoundaryPathData[ i ]; + const DXFBoundaryPathData& rPathData = rE.pBoundaryPathData[ j ]; if ( rPathData.bIsPolyLine ) { sal_Int32 i; @@ -633,8 +633,8 @@ void DXF2GDIMetaFile::DrawHatchEntity(const DXFHatchEntity & rE, const DXFTransf if ( nSize ) { Polygon aPoly( nSize ); - for ( i = 0; i < nSize; i++ ) - aPoly[ (sal_uInt16)i ] = aPtAry[ i ]; + for ( j = 0; j < nSize; j++ ) + aPoly[ (sal_uInt16)j ] = aPtAry[ j ]; aPolyPoly.Insert( aPoly, POLYPOLY_APPEND ); } } |