see changelog

This commit is contained in:
Eddie Runia
1999-05-30 22:09:46 +00:00
parent 8a10694f08
commit fb04bd4f2c
2 changed files with 6 additions and 9 deletions

View File

@@ -1,3 +1,7 @@
19990530-23:05 CET Eddie Runia
* source/rtl/objfunc.prg
since aEval has been clean for a long time, it was time to use it !
19990530-21:30 CET Eddie Runia
* source/rtl/classes.c; source/rtl/tclass.prg
initializer and release ready for inheritance

View File

@@ -108,16 +108,9 @@ return aData
//
function aOSet( oObject, aData )
local n
local nLen := Len( aData )
aEval( aData, ;
{|aItem| oSend( oObject, "_"+aItem[DATA_SYMBOL], aItem[DATA_VAL] ) } )
// aEval( aData, ; // Still losing 2 block
// {|aItem| oSend( oObject, "_"+aItem[DATA_SYMBOL], aItem[DATA_VAL] ) } )
for n := 1 to nLen
oSend( oObject, "_" + aData[n][DATA_SYMBOL], aData[n][DATA_VAL] )
// Send the message
next n
return oObject