Re: [fpc-pascal] Group arguments from overloaded functions in fpdoc

2012-01-05 Thread Michalis Kamburelis
dhkblas...@zeelandnet.nl wrote: When you have overloaded functions, fpdoc will group them on one page. The arguments however are listed in two separate arguments sections. It would be nice to have the arguments merged in one section. I do not know how to display the arguments though (no idea what

Re: [fpc-pascal] Group arguments from overloaded functions in fpdoc

2012-01-05 Thread dhkblaszyk
Resending the email. The images are here: http://imagebin.org/192019 [3] http://imagebin.org/192020 [4] http://imagebin.org/192021 [5] On 6 jan '12, dhkblas...@zeelandnet.nl wrote: > I checked doxygen (http://www.stack.nl/~dimitri/doxygen/examples/overload/html/class_test.html#a8e7b46

Re: [fpc-pascal] Group arguments from overloaded functions in fpdoc

2012-01-05 Thread dhkblaszyk
Resending the email. The images are here: http://imagebin.org/192019 [3] http://imagebin.org/192020 [4] http://imagebin.org/192021 [5] On 6 jan '12, dhkblas...@zeelandnet.nl wrote: > I checked doxygen (http://www.stack.nl/~dimitri/doxygen/examples/overload/html/class_test.html#a8e7b46

Re: [fpc-pascal] Group arguments from overloaded functions in fpdoc

2012-01-05 Thread Michael Van Canneyt
On Thu, 5 Jan 2012, dhkblas...@zeelandnet.nl wrote: When you have overloaded functions, fpdoc will group them on one page. The arguments however are listed in two separate arguments sections. It would be nice to have the arguments merged in one section. I do not know how to display the argum

[fpc-pascal] Group arguments from overloaded functions in fpdoc

2012-01-05 Thread dhkblaszyk
When you have overloaded functions, fpdoc will group them on one page. The arguments however are listed in two separate arguments sections. It would be nice to have the arguments merged in one section. I do not know how to display the arguments though (no idea what others do like pasdoc or doxyge

Re: [fpc-pascal] fpGUI Toolkit v0.8 release for FPC 2.4.4 & 2.6.0-rc

2012-01-05 Thread Graeme Geldenhuys
On 5 January 2012 18:27, Howard Page-Clark wrote: > It's possible I could help with book proofreading, and editing of content > written by you or others. Thanks Howard, I made a note of your email address to contact you closer to the time. I'll write the first drafts of two or three chapters, then

Re: [fpc-pascal] Generic type parameter variable initialization

2012-01-05 Thread Sven Barth
Am 05.01.2012 17:14, schrieb kyan: Saying a FPC compiler developer to look at the Delphi implementation is problematic, because than we could get accused of copying code (which is why I use the Delphi XE starter version which does not contain the source code of the RTL and VCL). I am sorry, I w

Re: [fpc-pascal] fpGUI Toolkit v0.8 release for FPC 2.4.4 & 2.6.0-rc

2012-01-05 Thread Howard Page-Clark
On 05/1/12 8:37, Graeme Geldenhuys wrote: Thanks Paul. I'm almost ready to push the new website live. I'll make sure I update your embedded section. Regarding your previous message about documentation. My goal this year is to complete the API documentation, and also start writing a free "Devel

Re: [fpc-pascal] Generic type parameter variable initialization

2012-01-05 Thread kyan
> Saying a FPC compiler developer to look at the Delphi implementation is > problematic, because than we could get accused of copying code (which is why > I use the Delphi XE starter version which does not contain the source code > of the RTL and VCL). I am sorry, I wasn't aware of that. But by me

Re: [fpc-pascal] Generic type parameter variable initialization

2012-01-05 Thread Sven Barth
Am 05.01.2012 15:51, schrieb kyan: On Thu, Jan 5, 2012 at 4:03 PM, Florian Klämpfl wrote: Am 05.01.2012 14:19, schrieb Sven Barth: Has the workaround really the same effect? I really wonder why there is a need for default then ... Yes, works for Variants as well. Look at the implementation of

Re: [fpc-pascal] Re: Installing FPC 2.5.1 in Mac OS X

2012-01-05 Thread Jonas Maebe
On 05 Jan 2012, at 16:10, Mattias Gaertner wrote: fpcres is not the only tool needed by fpc. Maybe some gui to define the environment vars for running the compiler can be implemented. You can use the -FD command line option for specifying an additional directory to search for the various ut

Re: [fpc-pascal] Re: Installing FPC 2.5.1 in Mac OS X

2012-01-05 Thread Mattias Gaertner
On Thu, 5 Jan 2012 15:53:19 +0100 (CET) mar...@stack.nl (Marco van de Voort) wrote: > In our previous episode, Vincent Snijders said: > > > Well, aside from installing different compilers in different prefixes > > > (what > > > I usually do), yes. > > > > > > I would file a bug, and see how Laz d

Re: [fpc-pascal] Re: Installing FPC 2.5.1 in Mac OS X

2012-01-05 Thread Marco van de Voort
In our previous episode, Vincent Snijders said: > > Well, aside from installing different compilers in different prefixes (what > > I usually do), yes. > > > > I would file a bug, and see how Laz devels see it. > > I'd say it is a compiler bug, because the compiler doesn't look in the > right plac

Re: [fpc-pascal] Generic type parameter variable initialization

2012-01-05 Thread kyan
On Thu, Jan 5, 2012 at 4:03 PM, Florian Klämpfl wrote: > Am 05.01.2012 14:19, schrieb Sven Barth: > Has the workaround really the same effect? I really wonder why there is > a need for default then ... Yes, works for Variants as well. Look at the implementation of System._FinalizeArray() in Delph

Re: [fpc-pascal] Re: Installing FPC 2.5.1 in Mac OS X

2012-01-05 Thread Jonas Maebe
On 05 Jan 2012, at 15:04, Vincent Snijders wrote: I'd say it is a compiler bug, because the compiler doesn't look in the right places, does it? Lazarus does do the looking for fpcres, but the compiler. The compiler looks for it in the $PATH. The $PATH contains /usr/local/ bin by default on M

Re: [fpc-pascal] Generic type parameter variable initialization

2012-01-05 Thread Sven Barth
Am 05.01.2012 15:03, schrieb Florian Klämpfl: Am 05.01.2012 14:19, schrieb Sven Barth: procedure TMyClass.SomeMethod; var V: T; begin ... Finalize(V); FillChar(V, SizeOf(V), 0); ... end; which is equivalent but it doesn't look too elegant. I am using FPC 2.7.1 for Win32/64.

Re: [fpc-pascal] Re: Installing FPC 2.5.1 in Mac OS X

2012-01-05 Thread Vincent Snijders
2012/1/5 Marco van de Voort : > In our previous episode, shiruba2012 said: >> I had the same issue when specifying a specific compiler in Lazarus.  I >> changed the directory back to >> >> /usr/local/bin/ppc386 >> >> and it worked fine.  I almost created another SymLink (as you did), and >> since t

Re: [fpc-pascal] Generic type parameter variable initialization

2012-01-05 Thread Florian Klämpfl
Am 05.01.2012 14:19, schrieb Sven Barth: >> procedure TMyClass.SomeMethod; >> var >>V: T; >> begin >>... >>Finalize(V); >>FillChar(V, SizeOf(V), 0); >>... >> end; >> >> which is equivalent but it doesn't look too elegant. I am using FPC >> 2.7.1 for Win32/64. > > For now you'll

Re: [fpc-pascal] Generic type parameter variable initialization

2012-01-05 Thread Sven Barth
Am 05.01.2012 11:57, schrieb kyan: Hello everybody. I am new to FPC/Lazarus and I am trying to port some Delphi XE code that uses the units Generics.Defaults and Generics.Collections so I have to write these units for FPC because they do not exist and the code I am porting relies heavily on them

Re: [fpc-pascal] Re: Installing FPC 2.5.1 in Mac OS X

2012-01-05 Thread Marco van de Voort
In our previous episode, shiruba2012 said: > I had the same issue when specifying a specific compiler in Lazarus. I > changed the directory back to > > /usr/local/bin/ppc386 > > and it worked fine. I almost created another SymLink (as you did), and > since that obviously works as well, the iss

[fpc-pascal] Generic type parameter variable initialization

2012-01-05 Thread kyan
Hello everybody. I am new to FPC/Lazarus and I am trying to port some Delphi XE code that uses the units Generics.Defaults and Generics.Collections so I have to write these units for FPC because they do not exist and the code I am porting relies heavily on them. In this process I have come across

Re: [fpc-pascal] fpGUI Toolkit v0.8 release for FPC 2.4.4 & 2.6.0-rc

2012-01-05 Thread Graeme Geldenhuys
On 5 January 2012 02:47, Paul Breneman wrote: > Since the earlier release on 23-Dec-2011 the file mentioned below has been > updated to FPC 2.6.0 and the serial debug terminal example also has some > improvements made. Thanks Paul. I'm almost ready to push the new website live. I'll make sure I