Re: [fpc-pascal] CLX is returning to Delphi 2011

2010-04-07 Thread Luiz Americo Pereira Camara
Marco van de Voort escreveu: In our previous episode, dmitry boyarintsev said: Does Embarcadero offer 2 different way of cross-platform development. Delphi Prism (XDelphi?) with its Mono .Net based development and Does Prism explicitely target Mono, or is it merely possible to DIY?

[fpc-pascal] TStringList bug?

2010-04-07 Thread Michael Müller
Hi, the following code behaves different between Delphi and Free Pascal: {$APPTYPE CONSOLE} {$IFDEF FPC} {$MODE delphi} {$ENDIF} uses Classes; type TFoo = class(TStringList) public constructor Create; end; constructor TFoo.Create; begin inherited Create; {$IFDEF FPC} // Is needed by Fre

Re: [fpc-pascal] TStringList bug?

2010-04-07 Thread Michael Van Canneyt
On Wed, 7 Apr 2010, Michael Müller wrote: Hi, the following code behaves different between Delphi and Free Pascal: {$APPTYPE CONSOLE} {$IFDEF FPC} {$MODE delphi} {$ENDIF} uses Classes; type TFoo = class(TStringList) public constructor Create; end; constructor TFoo.Create; begin inherited