Re: [fpc-pascal] Migrating MW objects definitions

2005-10-07 Thread Vincent Snijders
Jonas Maebe wrote: On 7 okt 2005, at 14:23, [EMAIL PROTECTED] wrote: I tried the 2.1.1 but it doesn't work yet, even I get different error messages (i.e. 'duplicate identifier myObjectB' and 'forward type not resolved myObjectB'). If you downloaded a snapshot, the reason is probably that

Re: [fpc-pascal] Migrating MW objects definitions

2005-10-07 Thread Jonas Maebe
On 7 okt 2005, at 15:38, Peter Vreman wrote: I've downloaded the latest shapshots available on the web page (both June and July version). Something which could matter: I couldn't use the standard installer (aborted trying to install something called 'very big app'), thus I inflated the arc

Re: [fpc-pascal] Migrating MW objects definitions

2005-10-07 Thread Jonas Maebe
On 7 okt 2005, at 15:19, [EMAIL PROTECTED] wrote: I've downloaded the latest shapshots available on the web page (both June and July version). It was probably fixed later. Something which could matter: I couldn't use the standard installer (aborted trying to install something called 'very

Re: [fpc-pascal] Migrating MW objects definitions

2005-10-07 Thread Peter Vreman
>>> I tried the 2.1.1 but it doesn't work yet, even I get different >>> error messages >>> (i.e. 'duplicate identifier myObjectB' and 'forward type not >>> resolved myObjectB'). >> >>If you downloaded a snapshot, the reason is probably that it was >>added after that snapshot was created. > I've dow

Re: [fpc-pascal] Migrating MW objects definitions

2005-10-07 Thread fpanasiti
>-- Messaggio Originale -- >From: Jonas Maebe <[EMAIL PROTECTED]> >Subject: Re: [fpc-pascal] Migrating MW objects definitions >Date: Fri, 7 Oct 2005 14:49:07 +0200 >To: FPC-Pascal users discussions >Reply-To: FPC-Pascal users discussions > > > >On 7 okt 200

RE: [fpc-pascal] Migrating MW objects definitions

2005-10-07 Thread Lee, John
Mmm agree... wasn't very helpful! J > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of > Jonas Maebe > Sent: 07 October 2005 14:05 > To: FPC-Pascal users discussions > Subject: Re: [fpc-pascal] Migrating MW objects definition

Re: [fpc-pascal] Migrating MW objects definitions

2005-10-07 Thread Jonas Maebe
On 7 okt 2005, at 14:58, Lee, John wrote: FYI the latest Win32 v2.1.1 snapshot on ftp freepascal.org was last night & contains all source changes up to then. John That does not help for people using Mac OS X (which is where most MacPas users are). Jonas _

RE: [fpc-pascal] Migrating MW objects definitions

2005-10-07 Thread Lee, John
FYI the latest Win32 v2.1.1 snapshot on ftp freepascal.org was last night & contains all source changes up to then. John > > If you downloaded a snapshot, the reason is probably that it was > added after that snapshot was created. > > This e-mail and any attachment is for authorised use by

Re: [fpc-pascal] Migrating MW objects definitions

2005-10-07 Thread Jonas Maebe
On 7 okt 2005, at 14:23, [EMAIL PROTECTED] wrote: I tried the 2.1.1 but it doesn't work yet, even I get different error messages (i.e. 'duplicate identifier myObjectB' and 'forward type not resolved myObjectB'). If you downloaded a snapshot, the reason is probably that it was added after

Re: [fpc-pascal] Migrating MW objects definitions

2005-10-07 Thread fpanasiti
>-- Messaggio Originale -- >From: Jonas Maebe <[EMAIL PROTECTED]> >Subject: Re: [fpc-pascal] Migrating MW objects definitions >Date: Thu, 6 Oct 2005 19:28:07 +0200 >To: FPC-Pascal users discussions >Reply-To: FPC-Pascal users discussions > > > >On 6 okt 200

Re: [fpc-pascal] Migrating MW objects definitions

2005-10-06 Thread Jonas Maebe
On 6 okt 2005, at 19:25, [EMAIL PROTECTED] wrote: Got the point, but there's still something wrong as I've tried the following code but the parser claims for an identifier instead ';' at the third line: (I'm using FPC 2.0.0: could it matter?) Yes, support for MacPas style objects is only

Re: [fpc-pascal] Migrating MW objects definitions

2005-10-06 Thread fpanasiti
>-- Messaggio Originale -- >From: Jonas Maebe <[EMAIL PROTECTED]> >Subject: Re: [fpc-pascal] Migrating MW objects definitions >Date: Thu, 6 Oct 2005 15:01:56 +0200 >To: FPC-Pascal users discussions >Reply-To: FPC-Pascal users discussions > > > >On 6 okt 200

Re: [fpc-pascal] Migrating MW objects definitions

2005-10-06 Thread Jonas Maebe
On 6 okt 2005, at 14:40, [EMAIL PROTECTED] wrote: I'm trying to migrate MW OO code to FPC. I'm in trouble with this piece of MW code: type myObjectA = object . lObj: myObjectB; ... end; type myObjectB = object ... lObj: myObjectA ... end; Essentially when the compiler tries to deal wit

Re: [fpc-pascal] Migrating MW objects definitions

2005-10-06 Thread Peter Vreman
> I'm trying to migrate MW OO code to FPC. I'm in trouble with this piece of > MW code: > > type > myObjectA = object > . > lObj: myObjectB; > ... > end; > > type > myObjectB = object > ... > lObj: myObjectA > ... > end; > > Essentially when the compiler tries to deal with myObjectA, it says th