Re: [fpc-devel]DateSeparator

2004-08-08 Thread Vincent Snijders
On Sun, 08 Aug 2004 00:26:54 -0500 Tony Maro [EMAIL PROTECTED] wrote: Marco van de Voort wrote: The DateSeparator is defined in sysinth.inc as Const { Character to be put between date, month and year } DateSeparator: char = '-'; As said on IRC, I suspect this is a 1.0.10

[fpc-devel]patch for fcl/db/dbase/Makefile.fpc

2004-08-08 Thread Vincent Snijders
Hi, The unit Dbf_Wtil is not needed on win32, and ATM is not compiled, so it should not be installed, nor cleaned. Attached patch for fcl/db/dbase/Makefile.fpc and fcl/db/dbase/Makefile fixes this. Regards, Vincent. ___ fpc-devel maillist - [EMAIL

[fpc-devel]New local switch CHECKPOINTER

2004-08-08 Thread Martin Schreiber
Sometimes we have to use memory which is allocated by xlib, heaptrc.CheckPointer does not like this addresses. I solved the problem by adding a new local compiler switch {$CHECKPOINTER ON/OFF/DEFAULT}. DEFAULT switches back to the state of commandline option -gc. Also added stack and data

Re: [fpc-devel]DateSeparator

2004-08-08 Thread Michael . VanCanneyt
On Sat, 7 Aug 2004, Tony Maro wrote: The DateSeparator is defined in sysinth.inc as Const { Character to be put between date, month and year } DateSeparator: char = '-'; As you can see it is a typed const, which means you can set it to any character you like. To solve your

Re: [fpc-devel]patch for fcl/db/dbase/Makefile.fpc

2004-08-08 Thread Michael . VanCanneyt
On Sun, 8 Aug 2004, Vincent Snijders wrote: Hi, The unit Dbf_Wtil is not needed on win32, and ATM is not compiled, so it should not be installed, nor cleaned. Attached patch for fcl/db/dbase/Makefile.fpc and fcl/db/dbase/Makefile fixes this. Applied, thanks ! Michael.

Re: [fpc-devel]DateSeparator

2004-08-08 Thread Tony Maro
[EMAIL PROTECTED] wrote: As you can see it is a typed const, which means you can set it to any character you like. To solve your problems, set it to '/' at program startup, and you should be fine. Same for the other constants. Ah... okay. So just a lack of knowledge on my part. Thanks guys,