diff --git a/harbour/ChangeLog b/harbour/ChangeLog index c2f7675ebd..0d9b3540b8 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +2001-08-21 23:35 UTC-0400 David G. Holm + * source/rtl/gtcrs/gtcrs.c + * Renamed uRow variable to Row in hb_gt_VertLine(), to match the + name in the other GT libraries and because it is not unsigned. + 2001-08-21 08:30 GMT Dave Pearson * source/compiler/gencobj.c * Fixed bugs 453424 (compiler core dumps on GNU/Linux when no @@ -57,7 +62,7 @@ * source/rtl/gtcrs/gtcrs.c * Fixed incorrectly named variable (Row -> uRow) in hb_gt_VertLine(). -2001-08-21 23:35 UTC-0400 David G. Holm +2001-08-20 23:35 UTC-0400 David G. Holm * include/hbapigt.h * source/rtl/gtapi.c diff --git a/harbour/source/rtl/gtcrs/gtcrs.c b/harbour/source/rtl/gtcrs/gtcrs.c index 8461c506db..7dbc3b4601 100644 --- a/harbour/source/rtl/gtcrs/gtcrs.c +++ b/harbour/source/rtl/gtcrs/gtcrs.c @@ -775,20 +775,20 @@ USHORT hb_gt_HorizLine( SHORT Row, SHORT Left, SHORT Right, BYTE byChar, BYTE by USHORT hb_gt_VertLine( SHORT Col, SHORT Top, SHORT Bottom, BYTE byChar, BYTE byAttr ) { - SHORT uRow; + SHORT Row; if( Top <= Bottom ) - uRow = Top; + Row = Top; else { - uRow = Bottom; + Row = Bottom; Bottom = Top; } if( s_under_xterm ) byChar = ACS_VLINE; - mvvline( uRow, Col, byChar | A_ALTCHARSET | s_attribmap_table[ byAttr ], + mvvline( Row, Col, byChar | A_ALTCHARSET | s_attribmap_table[ byAttr ], Bottom - uRow + 1 ); return 0;