Re: [fpc-devel] TList.Assign - overloaded implementation

2006-05-12 Thread Michael Van Canneyt
On Fri, 12 May 2006, Geno Roupsky wrote: 2006/5/11, Florian Klaempfl <[EMAIL PROTECTED]>: It is a plain copy of the delphi source code so it can't be used. Well this sounds strange :) Is it because of licensing problems or compatibility ones? Licensing, obviously. Michael.

Re: [fpc-devel] TList.Assign - overloaded implementation

2006-05-12 Thread Geno Roupsky
2006/5/11, Florian Klaempfl <[EMAIL PROTECTED]>: It is a plain copy of the delphi source code so it can't be used.Well this sounds strange :)Is it because of licensing problems or compatibility ones?-- Geno Roupsky ___ fpc-devel maillist - fpc-devel@lis

Re: [fpc-devel] TList.Assign - overloaded implementation

2006-05-11 Thread Florian Klaempfl
Alexander Todorov wrote: > Hello, > > procedure TList.Assign(ListA: TList; AOperator: TListAssignOp; ListB: > TList); > > exists in Delphi that allows you to assign to a TList object the > result of the operation > 'ListA AOperator ListB'. This can be : copy, and, xor for example. > > The att

[fpc-devel] TList.Assign - overloaded implementation

2006-05-11 Thread Alexander Todorov
Hello, procedure TList.Assign(ListA: TList; AOperator: TListAssignOp; ListB: TList); exists in Delphi that allows you to assign to a TList object the result of the operation 'ListA AOperator ListB'. This can be : copy, and, xor for example. The attached file contains and implementation of th