2004-02-15 03:42 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu>
* source/rdd/dbcmd.c
! FIELDPUT() Fixed to accept and ignore field NIL values
without runtime error. C52 compatible.
This commit is contained in:
@@ -8,6 +8,12 @@
|
||||
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
|
||||
2004-02-15 03:42 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu>
|
||||
|
||||
* source/rdd/dbcmd.c
|
||||
! FIELDPUT() Fixed to accept and ignore field NIL values
|
||||
without runtime error. C52 compatible.
|
||||
|
||||
2004-02-14 19:14 UTC+0100 Viktor Szakats <viktor.szakats@syenar.hu>
|
||||
|
||||
* source/rtl/tbrowse.prg
|
||||
|
||||
@@ -284,7 +284,7 @@ extern int hb_inkeyNext( HB_inkey_enum event_mask ); /* Return the
|
||||
extern void hb_inkeyPoll( void ); /* Poll the console keyboard to stuff the Harbour buffer */
|
||||
extern void hb_inkeyReset( BOOL allocate ); /* Reset the Harbour keyboard buffer */
|
||||
extern int hb_inkeyTranslate( int key, HB_inkey_enum event_make ); /* Translation extended codes to normal codes, if needed */
|
||||
extern void hb_inkeySetCancelKeys( int CancelKey, int CancelKeyEx ); /* Set keycodes for Cancel key (usually K_ALT_C) */
|
||||
extern void hb_inkeySetCancelKeys( int CancelKey, int CancelKeyEx ); /* Set keycodes for Cancel key (usually K_ALT_C) */
|
||||
|
||||
/* Mouse related declarations */
|
||||
|
||||
|
||||
@@ -2231,7 +2231,7 @@ HB_FUNC( FIELDPUT )
|
||||
if( s_pCurrArea && uiIndex )
|
||||
{
|
||||
pItem = hb_param( 2, HB_IT_ANY );
|
||||
if( SELF_PUTVALUE( ( AREAP ) s_pCurrArea->pArea, uiIndex, pItem ) == SUCCESS )
|
||||
if( ! HB_IS_NIL( pItem ) && ( SELF_PUTVALUE( ( AREAP ) s_pCurrArea->pArea, uiIndex, pItem ) == SUCCESS ) )
|
||||
hb_itemReturn( pItem );
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user