diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 314cd0fb52..d4f7018273 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +2001-08-22 17:01 GMT Dave Pearson + * source/rtl/gtcrs/gtcrs.c + * Fixed incorrectly named variable (uRow -> Row) in hb_gt_VertLine(). + 2001-08-22 12:45 UTC-0400 David G. Holm * source/rtl/gtcgi/gtcgi.c diff --git a/harbour/source/rtl/gtcrs/gtcrs.c b/harbour/source/rtl/gtcrs/gtcrs.c index 688ac1801f..ef5e20f150 100644 --- a/harbour/source/rtl/gtcrs/gtcrs.c +++ b/harbour/source/rtl/gtcrs/gtcrs.c @@ -789,7 +789,7 @@ USHORT hb_gt_VertLine( SHORT Col, SHORT Top, SHORT Bottom, BYTE byChar, BYTE byA byChar = ACS_VLINE; mvvline( Row, Col, byChar | A_ALTCHARSET | s_attribmap_table[ byAttr ], - Bottom - uRow + 1 ); + Bottom - Row + 1 ); return 0; }