diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 20:46:40 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 20:46:40 +0000 |
commit | 07900da89b6cefa9a3bef89acb9ef17f14bc2821 (patch) | |
tree | 8314d3dd304c5bff3227b98474857875de777836 | |
parent | dfd196d4f62e789416471c8870eada4e46f97868 (diff) |
INTEGRATION: CWS warnings01 (1.4.28); FILE MERGED
2005/10/28 10:18:54 sj 1.4.28.1: #i55991# warning free code
-rw-r--r-- | goodies/source/filter.vcl/idxf/dxfentrd.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/goodies/source/filter.vcl/idxf/dxfentrd.cxx b/goodies/source/filter.vcl/idxf/dxfentrd.cxx index 27cf4bf7ceed..c97a83f4609a 100644 --- a/goodies/source/filter.vcl/idxf/dxfentrd.cxx +++ b/goodies/source/filter.vcl/idxf/dxfentrd.cxx @@ -4,9 +4,9 @@ * * $RCSfile: dxfentrd.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-09 02:54:53 $ + * last change: $Author: hr $ $Date: 2006-06-19 21:46:40 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -582,15 +582,15 @@ sal_Bool DXFEdgeTypeSpline::EvaluateGroup( DXFGroupReader & rDGR ) } DXFBoundaryPathData::DXFBoundaryPathData() : - bIsPolyLine( sal_True ), - nPointIndex( 0 ), nFlags( 0 ), nHasBulgeFlag( 0 ), nIsClosedFlag( 0 ), nPointCount( 0 ), - nEdgeCount( 0 ), fBulge( 0.0 ), nSourceBoundaryObjects( 0 ), + nEdgeCount( 0 ), + bIsPolyLine( sal_True ), + nPointIndex( 0 ), pP( NULL ) { } @@ -670,11 +670,10 @@ sal_Bool DXFBoundaryPathData::EvaluateGroup( DXFGroupReader & rDGR ) DXFHatchEntity::DXFHatchEntity() : DXFBasicEntity( DXF_HATCH ), bIsInBoundaryPathContext( sal_False ), - pBoundaryPathData( NULL ), nCurrentBoundaryPathIndex( -1 ), - nBoundaryPathCount( 0 ), nFlags( 0 ), nAssociativityFlag( 0 ), + nBoundaryPathCount( 0 ), nHatchStyle( 0 ), nHatchPatternType( 0 ), fHatchPatternAngle( 0.0 ), @@ -682,7 +681,8 @@ DXFHatchEntity::DXFHatchEntity() : nHatchDoubleFlag( 0 ), nHatchPatternDefinitionLines( 0 ), fPixelSize( 1.0 ), - nNumberOfSeedPoints( 0 ) + nNumberOfSeedPoints( 0 ), + pBoundaryPathData( NULL ) { } |