fix compil warrnings (shadowed vars)

This commit is contained in:
jean-pierre charras 2020-11-20 08:16:19 +01:00
parent 4bf79f2b90
commit e5daac97c2
1 changed files with 18 additions and 18 deletions

View File

@ -1581,24 +1581,24 @@ struct DXFLIB_EXPORT DL_LeaderData
* Constructor. * Constructor.
* Parameters: see member variables. * Parameters: see member variables.
*/ */
DL_LeaderData( int arrowHeadFlag, DL_LeaderData( int aArrowHeadFlag,
int leaderPathType, int aLeaderPathType,
int leaderCreationFlag, int aLeaderCreationFlag,
int hooklineDirectionFlag, int aHooklineDirectionFlag,
int hooklineFlag, int aHooklineFlag,
double textAnnotationHeight, double aTextAnnotationHeight,
double textAnnotationWidth, double aTextAnnotationWidth,
int number, int aNumber,
double dimScale = 1.0 ) : double aDimScale = 1.0 ) :
arrowHeadFlag(arrowHeadFlag), arrowHeadFlag(aArrowHeadFlag),
leaderPathType(leaderPathType), leaderPathType(aLeaderPathType),
leaderCreationFlag(leaderCreationFlag), leaderCreationFlag(aLeaderCreationFlag),
hooklineDirectionFlag( hooklineDirectionFlag ), hooklineDirectionFlag( aHooklineDirectionFlag ),
hooklineFlag( hooklineFlag ), hooklineFlag( aHooklineFlag ),
textAnnotationHeight( textAnnotationHeight ), textAnnotationHeight( aTextAnnotationHeight ),
textAnnotationWidth( textAnnotationWidth ), textAnnotationWidth( aTextAnnotationWidth ),
number( number ), number( aNumber ),
dimScale( dimScale ) dimScale( aDimScale )
{ {
} }