2001-08-22 17:01 GMT Dave Pearson <davep@davep.org>

* source/rtl/gtcrs/gtcrs.c
    * Fixed incorrectly named variable (uRow -> Row) in hb_gt_VertLine().
This commit is contained in:
Dave Pearson
2001-08-22 17:04:48 +00:00
parent b8d6d589f2
commit f29cb6b733
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2001-08-22 17:01 GMT Dave Pearson <davep@davep.org>
* 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 <dholm@jsd-llc.com>
* source/rtl/gtcgi/gtcgi.c

View File

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