From 71002454534f9e403da5a19cebbe2d22aade7b79 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Tue, 21 Aug 2001 06:47:45 +0000 Subject: [PATCH] 2001-08-20 14:02 GMT Dave Pearson * source/rtl/gtcrs/gtcrs.c * Fixed incorrectly named variable (Row -> uRow) in hb_gt_VertLine(). --- harbour/ChangeLog | 4 ++++ harbour/source/rtl/gtcrs/gtcrs.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index a4c191385e..e1d890ca7d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +2001-08-20 14:02 GMT Dave Pearson + * 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 * include/hbapigt.h diff --git a/harbour/source/rtl/gtcrs/gtcrs.c b/harbour/source/rtl/gtcrs/gtcrs.c index 89831facc2..8461c506db 100644 --- a/harbour/source/rtl/gtcrs/gtcrs.c +++ b/harbour/source/rtl/gtcrs/gtcrs.c @@ -775,10 +775,10 @@ 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 Row; + SHORT uRow; if( Top <= Bottom ) - Row = Top; + uRow = Top; else { uRow = Bottom; @@ -789,7 +789,7 @@ USHORT hb_gt_VertLine( SHORT Col, SHORT Top, SHORT Bottom, BYTE byChar, BYTE byA byChar = ACS_VLINE; mvvline( uRow, Col, byChar | A_ALTCHARSET | s_attribmap_table[ byAttr ], - Bottom - Row + 1 ); + Bottom - uRow + 1 ); return 0; }