2001-03-14 04:55 UTC-0800 Ron Pinkas <ron@profit-master.com>

* source/vm/classes.c
     ! Fixed hb_param() to hb_stackItemFromBase() (posted by José F. Giménez)
This commit is contained in:
Ron Pinkas
2001-03-15 00:56:15 +00:00
parent 0902fc885d
commit 27e28f22c7
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2001-03-14 04:55 UTC-0800 Ron Pinkas <ron@profit-master.com>
* source/vm/classes.c
! Fixed hb_param() to hb_stackItemFromBase() (posted by José F. Giménez)
2001-03-13 03:45 UTC-0800 Ron Pinkas <ron@profit-master.com>
* contrib/dot/pp.txt
* Updated status of newly added support.

View File

@@ -1977,7 +1977,7 @@ static HARBOUR hb___msgEvalInline( void )
hb_vmPush( &block );
hb_vmPush( hb_stackSelfItem() ); /* Push self */
for( uiParam = 1; uiParam <= uiPCount; uiParam++ )
hb_vmPush( hb_param( uiParam, HB_IT_ANY ) );
hb_vmPush( hb_stackItemFromBase( uiParam ) );
hb_vmDo( ( USHORT ) (uiPCount + 1 ) ); /* Self is also an argument */