See ChangeLog entry 2001-08-06 20:50 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2001-08-07 00:54:36 +00:00
parent 4764b6815e
commit a68a389c86
4 changed files with 19 additions and 6 deletions

View File

@@ -1,3 +1,16 @@
2001-08-06 20:50 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* source/rtl/math.c
! Added missing type override for hb_xgrab return value on line 99
(type overrides are *mandatory* for hb_xgrab and hb_xrealloc, so
that Harbour can be built using C++ compilers).
* source/rtl/gtsln/gtsln.c
* contrib/libct/ctstr.c
! Fixed typos causing compile errors with HB_TR_DEBUG and gcc. Case
error in variable names in debug info calls (e.g. nstrLen instead
of nStrLen). Fixed by "Fergus McDonald" <listsub@qvolution.com>
2001-08-06 20:30 GMT -3 Luiz Rafael Culik <culik@sl.conex.net>
*source/rtl/tbrowse.prg
* Fixed support to display pictures in TBrwose. Thanks for Manu Exposito <maex14@dipusevilha.es>

View File

@@ -83,7 +83,7 @@ char *ct_at_exact_forward (char *pcString, size_t sStrLen,
size_t sPos;
HB_TRACE(HB_TR_DEBUG, ("ct_at_exact_forward (\"%s\", %u, \"%s\", %u, %p)",
pcString, sStrlen, pcMatch, sMatchLen, psMatchStrLen));
pcString, sStrLen, pcMatch, sMatchLen, psMatchStrLen));
if ((sMatchLen == 0) || (sStrLen < sMatchLen))
return (NULL);
@@ -228,7 +228,7 @@ char *ct_at_charset_forward (char *pcString, size_t sStrLen,
char *pcRet, *pcSet, *pcStop1, *pcStop2;
HB_TRACE(HB_TR_DEBUG, ("ct_at_charset_forward (\"%s\", %u, \"%s\", %u, %p)",
pcString, sStrlen, pcCharSet, sCharSetLen, psMatchedCharPos));
pcString, sStrLen, pcCharSet, sCharSetLen, psMatchedCharPos));
*(psMatchedCharPos) = sCharSetLen;
@@ -264,7 +264,7 @@ char *ct_at_charset_backward (char *pcString, size_t sStrLen,
char *pcRet, *pcSet, *pcStop;
HB_TRACE(HB_TR_DEBUG, ("ct_at_charset_backward (\"%s\", %u, \"%s\", %u, %p)",
pcString, sStrlen, pcCharSet, sCharSetLen, psMatchedCharPos));
pcString, sStrLen, pcCharSet, sCharSetLen, psMatchedCharPos));
*(psMatchedCharPos) = sCharSetLen;

View File

@@ -631,7 +631,7 @@ void hb_gt_Scroll( USHORT usTop, USHORT usLeft, USHORT usBottom, USHORT usRight,
int iLength = ( usRight - usLeft ) + 1;
int iCount, iColOld, iColNew, iColSize;
HB_TRACE(HB_TR_DEBUG, ("hb_gt_Scroll(%hu, %hu, %hu, %hu, %d, %hd, %hd)", uiTop, uiLeft, uiBottom, uiRight, (int) byAttr, iRows, iCols));
HB_TRACE(HB_TR_DEBUG, ("hb_gt_Scroll(%hu, %hu, %hu, %hu, %d, %hd, %hd)", usTop, usLeft, usBottom, usRight, (int) byAttr, iRows, iCols));
if( hb_gtRectSize( usTop, usLeft, usBottom, usRight, &uiSize ) == 0 )
{
@@ -815,7 +815,7 @@ void hb_gt_Replicate( USHORT uiRow, USHORT uiCol, BYTE byAttr, BYTE byChar, ULON
unsigned char Pos, Msk;
SLsmg_Char_Type SLchar, SLattr, * pScr;
HB_TRACE(HB_TR_DEBUG, ("hb_gt_Replicate(%hu, %hu, %i, %i, %lu)", uiRow, uiCol, byAttr, byChar, nLength));
HB_TRACE(HB_TR_DEBUG, ("hb_gt_Replicate(%hu, %hu, %i, %i, %lu)", uiRow, uiCol, byAttr, byChar, ulLen));
pScr = ( SLsmg_Char_Type * ) hb_xgrab( ( ulLen + 1 ) * sizeof( SLsmg_Char_Type ) );

View File

@@ -96,7 +96,7 @@ HB_MATH_HANDLERHANDLE hb_installMathHandler (HB_MATH_HANDLERPROC handlerproc)
PHB_MATH_HANDLERCHAINELEMENT pChain, pNewChainelement;
HB_TRACE(HB_TR_DEBUG, ("hb_installMathHandler (%p)", handlerproc));
pNewChainelement = hb_xgrab (sizeof (HB_MATH_HANDLERCHAINELEMENT));
pNewChainelement = (PHB_MATH_HANDLERCHAINELEMENT)hb_xgrab (sizeof (HB_MATH_HANDLERCHAINELEMENT));
pNewChainelement->handlerproc = handlerproc;
pNewChainelement->status = HB_MATH_HANDLER_STATUS_ACTIVE;
/* initially activated */