Changelog 2002-01-11 08:10 UTC -0300

This commit is contained in:
Luiz Rafael Culik
2002-01-11 10:23:48 +00:00
parent 3ad9b25eef
commit 0ce01f5a88
2 changed files with 11 additions and 1 deletions

View File

@@ -7,7 +7,12 @@
For example:
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2002-10-01 22:10 GMT-3 Luiz Rafael Culik <culik@sl.conex.net>
* Added missed Attribute check (thanks Victor)
2002-01-14 14:30 UTC-0500 Paul Tucker <ptucker@sympatico.ca>
* source\rtl\direct.c
* updated notes and TODO's
2002-01-14 10:40 UTC-0500 Paul Tucker <ptucker@sympatico.ca>
* source\common\hbffind.c
* source\rtl\direct.c

View File

@@ -1234,9 +1234,14 @@ ERRCODE hb_dbfPutValue( DBFAREAP pArea, USHORT uiIndex, PHB_ITEM pItem )
( LONG ) hb_numRound( hb_itemGetND( pItem ), 0 ) );
}
else
/*
uiSize = sprintf( szBuffer, "%*.*f", pField->uiLen - pField->uiDec - 1,
pField->uiDec, hb_numRound( hb_itemGetND( pItem ),
pField->uiDec ) );
*/
uiSize = sprintf( szBuffer, "%*.*f", pField->uiLen, pField->uiDec,
hb_numRound( hb_itemGetND( pItem ),
pField->uiDec ) );
}
else
{