|
I've solved the problem another way, since no one knew.
Old way:
Thing = Object
End;
myThing : ^Thing
new (myThing) // instantiation
New way:
Thing = Class
End;
myThing : Thing
myThing:= Thing.create // another instantiation
now I can pass 'myThing' as a parameter:
Funcition addItem( myThing : Thing);
no errors/problem.
|