[Lazarus] dtm_maker project compile errors with TList code.

2011-05-06 Thread Peter Williams
Hi All, I have uploaded my project with compile time errors to here: Download link: http://hotfile.com/dl/116917459/8effac0/dtm_maker_002.zip.htmlAnd I am getting these errors: Options changed, recompiling clean with -BHint: Start of reading config file /etc/fpc.cfgHint: End of reading

Re: [Lazarus] dtm_maker project compile errors with TList code.

2011-05-06 Thread Peter Williams
@lists.lazarus.freepascal.org Date: Fri, 6 May 2011 17:17:36 +1000 Subject: [Lazarus] dtm_maker project compile errors with TList code. Hi All, I have uploaded my project with compile time errors to here: Download link: http://hotfile.com/dl/116917459/8effac0/dtm_maker_002.zip.htmlAnd I am getting

Re: [Lazarus] dtm_maker project compile errors with TList code.

2011-05-06 Thread Luk Vandelaer
Your constructor should be something like constructor TIsland.Create(const ATerrain : Terrain_type; const ATerrain_char : char; const Adescription : description_type; const Ax, Ay, Alocation_number : integer; const Aexits : exit_type ); begin // Save the

Re: [Lazarus] dtm_maker project compile errors with TList code.

2011-05-06 Thread Henry Vermaak
On 06/05/11 11:24, Peter Williams wrote: Hi All, I have copied the relevant unit to pastebin.com and here it is: http://pastebin.com/2v4xw4ep http://pastebin.com/2v4xw4ep unit1.pas(191,18) Error: No member is provided to access property unit1.pas(192,21) Error: No member is provided to access

Re: [Lazarus] dtm_maker project compile errors with TList code.

2011-05-06 Thread Henry Vermaak
On 06/05/11 11:50, Luk Vandelaer wrote: You declared the properties as read only, so assignments are not possible, Hehe, of course. Silly me for not noticing this. Henry -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] dtm_maker project compile errors with TList code.

2011-05-06 Thread Peter Williams
Subject: Re: [Lazarus] dtm_maker project compile errors with TList code. On 06/05/11 11:50, Luk Vandelaer wrote: You declared the properties as read only, so assignments are not possible, Hehe, of course. Silly me for not noticing this. Henry

Re: [Lazarus] dtm_maker project compile errors with TList code.

2011-05-06 Thread Mattias Gaertner
see the unit fgl for examples of generics. Mattias -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] dtm_maker project compile errors with TList code.

2011-05-06 Thread Peter Williams
compile errors with TList code. Hi Mattias. Date: Fri, 6 May 2011 17:07:55 +0200 From: nc-gaert...@netcologne.de To: lazarus@lists.lazarus.freepascal.org Subject: Re: [Lazarus] dtm_maker project compile errors with TList code. see the unit fgl for examples of generics. Without meaning