RE: [fpc-pascal] Important IDE bugs fixed

2006-12-01 Thread Wolfe, Robert
Daniel, I will try and build this into the Sparc port in the next day or so. Robert Wolfe [MCP/Linux+], Computer Programmer/Analyst Roswell Park Cancer Institute, SR-DAR Elm & Carlton Streets, Buffalo, NY 716-845-4916 | [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [ma

[fpc-pascal] Important IDE bugs fixed

2006-12-01 Thread Daniël Mantione
Hello, Last days, I have fixed two bugs which were the cause of random IDE crashes. One occurs on all platforms, the other one on Unix platforms. If were troubled by IDE crashes, please try the next snapshot (there are compiled at 03:00 CET each night). As there are serious bugs, I have also me

Re: [fpc-pascal] GetMem question

2006-12-01 Thread Flávio Etrusco
() var lList : PPropList; begin lList := nil; // <<== New line, I expect to fix a FPC warning ... GetMem(lList, lSize); But it's created a warning in BDS2006 Variable assigned to LList never used - Simply put: the parameter is always di

Re: [fpc-pascal] Eye Candy Contest

2006-12-01 Thread Marc PERTRON
Hello, Could the people working on the Eye Candy Contest tell me if they think all is ok (it's in 15 days ;o)) Marc ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] GetMem question

2006-12-01 Thread Daniël Mantione
Op Fri, 1 Dec 2006, schreef Graeme Geldenhuys: > I got this question from a Delphi 2006 user regarding a code change I > made in the tiOPF project. tiOPF is compiled with FPC using the > Delphi compiler mode. FPC 2.0.4 and FPC 2.1.1 is used. > > - >