See ChangeLog entry 2001-08-21 23:35 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2001-08-21 18:43:51 +00:00
parent c6b186f607
commit 9119f2e646
2 changed files with 10 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
2001-08-21 23:35 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* 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 <davep@davep.org>
* 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 <dholm@jsd-llc.com>
2001-08-20 23:35 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* include/hbapigt.h
* source/rtl/gtapi.c

View File

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