2002-11-27 13:30 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>

This commit is contained in:
Alexander S.Kresin
2002-11-27 10:25:47 +00:00
parent 3ff285efa3
commit 170f3c9d27
3 changed files with 11 additions and 1 deletions

View File

@@ -8,6 +8,12 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2002-11-27 13:30 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
* source/rdd/dbfntx/dbfntx1.c
! Bug fixed, reported by Carlos Andr©s
* source/rtl/cdpapi.c
! Bug fixed in HB_TRANSLATE()
2002-11-26 21:20 UTC+0100 Tomaz Zupan <tomaz.zupan@orpo.si>
* contrib/odbc/browodbc.prg
! There was a bug in skipping, that threw an error when
@@ -18,6 +24,7 @@
! removed unused Var
* source/rtl/menuto.prg
! minor formating
2002-11-21 12:05 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
* source/rdd/dbfntx/dbfntx1.c
* DBOI_ORDERCOUNT is supported now

View File

@@ -3993,6 +3993,9 @@ static ERRCODE ntxOrderListRebuild( NTXAREAP pArea )
HB_TRACE(HB_TR_DEBUG, ("ntxOrderListRebuild(%p)", pArea));
if( SELF_GOCOLD( ( AREAP ) pArea ) == FAILURE )
return FAILURE;
pTag = pArea->lpNtxTag;
pTagTmp = pArea->lpCurTag;
pArea->fValidBuffer = TRUE;

View File

@@ -396,9 +396,9 @@ HB_FUNC( HB_TRANSLATE )
ilen = hb_parclen(1);
cdpIn = ( szIdIn )? hb_cdpFind( szIdIn ):s_cdpage;
cdpOut = ( szIdOut )? hb_cdpFind( szIdOut ):s_cdpage;
szResult = (char*) hb_xgrab( ilen + 1 );
memcpy( szResult, szIn, ilen );
szResult[ ilen ] = '\0';
hb_cdpTranslate( szResult, cdpIn, cdpOut );
hb_retc_buffer( szResult );