[fpc-devel] Problem documenting source code

2012-02-17 Thread Hans-Peter Diettrich
After adding documentation for some items in the FPDoc Editor, I have problems running MakeSkel or FPDoc. Both report errors in the input file, which seem to be related to wrong or missing compiler options for that file. How can a documentation writer determine the required compiler options,

Re: [fpc-devel] Problem documenting source code

2012-02-17 Thread michael . vancanneyt
On Fri, 17 Feb 2012, Hans-Peter Diettrich wrote: After adding documentation for some items in the FPDoc Editor, I have problems running MakeSkel or FPDoc. Both report errors in the input file, which seem to be related to wrong or missing compiler options for that file. How can a

Re: [fpc-devel] Problem documenting source code

2012-02-17 Thread Hans-Peter Diettrich
michael.vancann...@wisa.be schrieb: It may be a bad example (work in progress?), but I couldn't figure out the required compiler options for e.g. fcl-process/pipesipc.pp, in an attempt to create the skeletons for the fcl-process package. Why would you want to do that ? I simply wanted to

[fpc-devel] TMultiReadExclusiveWriteSynchronizer

2012-02-17 Thread David Jenkins
Under Delphi if the TMultiReadExclusiveWriteSynchronizer writelock is held a read is not blocked if the ThreadID for the read is the same as the ThreadID for the write. Under FreePascal if writelock is held the read is always blocked regardless of ThreadID or anything else (implemented in the

Re: [fpc-devel] TMultiReadExclusiveWriteSynchronizer

2012-02-17 Thread Jonas Maebe
On 16 Feb 2012, at 23:56, David Jenkins wrote: Under Delphi if the TMultiReadExclusiveWriteSynchronizer writelock is held a read is not blocked if the ThreadID for the read is the same as the ThreadID for the write. Under FreePascal if writelock is held the read is always blocked

[fpc-devel] getting error, after publishing property

2012-02-17 Thread Martin
I have some code, and an error, that I can not explain (fpc 2.4.4 and 2.6) the base class defines public property Editor: TCustomSynEdit read GetEditor write SetEditor; in the inherited class, I can access Editor (of course I can) but I add published property Editor:

Re: [fpc-devel] getting error, after publishing property

2012-02-17 Thread Sven Barth
Am 17.02.2012 16:15, schrieb Martin: I have some code, and an error, that I can not explain (fpc 2.4.4 and 2.6) the base class defines public property Editor: TCustomSynEdit read GetEditor write SetEditor; in the inherited class, I can access Editor (of course I can) but I add published

Re: [fpc-devel] getting error, after publishing property

2012-02-17 Thread Sven Barth
Am 17.02.2012 16:23, schrieb Martin: On 17/02/2012 15:19, Sven Barth wrote: Am 17.02.2012 16:15, schrieb Martin: I have some code, and an error, that I can not explain (fpc 2.4.4 and 2.6) the base class defines public property Editor: TCustomSynEdit read GetEditor write SetEditor; in the