2001-08-20 14:02 GMT Dave Pearson <davep@davep.org>

* source/rtl/gtcrs/gtcrs.c
    * Fixed incorrectly named variable (Row -> uRow) in hb_gt_VertLine().
This commit is contained in:
Dave Pearson
2001-08-21 06:47:45 +00:00
parent 1f3fda11f1
commit 7100245453
2 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2001-08-20 14:02 GMT Dave Pearson <davep@davep.org>
* 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 <dholm@jsd-llc.com>
* include/hbapigt.h

View File

@@ -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;
}