Re: [fpc-pascal] Help translating C++ to Object Pascal

2010-09-15 Thread Graeme Geldenhuys
Thanks to all that replied. My C/C++ is a bit rusty. :) Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://opensoft.homeip.net/fpgui/ ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

Re: [fpc-pascal] Help translating C++ to Object Pascal

2010-09-14 Thread Reimar Grabowski
On Tue, 14 Sep 2010 11:50:31 +0200 Graeme Geldenhuys graemeg.li...@gmail.com wrote: Hi, In a C++ method as shown below, does the '... return True;' immediately exit the HandleClientMessage method Yes. R. -- A: Because it messes up the order in which people normally read text. Q: Why is

Re: [fpc-pascal] Help translating C++ to Object Pascal

2010-09-14 Thread David W Noon
On Tue, 14 Sep 2010 11:50:31 +0200, Graeme Geldenhuys wrote about [fpc-pascal] Help translating C++ to Object Pascal: In a C++ method as shown below, does the '... return True;' immediately exit the HandleClientMessage method, or will it still continue processing the remainder of the method

[fpc-pascal] Help translating C++ to Object Pascal

2010-09-14 Thread Graeme Geldenhuys
Hi, In a C++ method as shown below, does the '... return True;' immediately exit the HandleClientMessage method, or will it still continue processing the remainder of the method (just exiting the current code block)? int

Re: [fpc-pascal] Help translating C++ to Object Pascal

2010-09-14 Thread Sven Barth
Am 14.09.2010 11:50, schrieb Graeme Geldenhuys: Hi, In a C++ method as shown below, does the '... return True;' immediately exit the HandleClientMessage method, or will it still continue processing the remainder of the method (just exiting the current code block)?