fix compil warrnings (shadowed vars)
This commit is contained in:
parent
4bf79f2b90
commit
e5daac97c2
|
@ -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 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue