Re: [Flightgear-devel] a FIXME in fg_props.cxx

2003-11-13 Thread Gene Buckle
> > > * [EMAIL PROTECTED] (Gene Buckle) [2003.11.12 10:35]: > > > > code: > > > > > > > > static const char * > > > > getDateString () > > > > { > > > > static char buf[64]; // FIXME > > > > struct tm * t = globals->get_time_params()->getGmt(); > > > > sprintf(buf, "%.4d-%.2d-%.2dT%.

Re: [Flightgear-devel] a FIXME in fg_props.cxx

2003-11-12 Thread Ivo
On Thursday 13 November 2003 06:54, Gene Buckle wrote: > On Wed, 12 Nov 2003, Cameron Moore wrote: > > * [EMAIL PROTECTED] (Gene Buckle) [2003.11.12 10:35]: > > > static const char * > > > getDateString () > > > { > > > static char buf[64]; // FIXME > > > struct tm * t = globals->get_t

Re: [Flightgear-devel] a FIXME in fg_props.cxx

2003-11-12 Thread Simon Fowler
On Wed, Nov 12, 2003 at 09:54:34PM -0800, Gene Buckle wrote: > > On Wed, 12 Nov 2003, Cameron Moore wrote: > > > * [EMAIL PROTECTED] (Gene Buckle) [2003.11.12 10:35]: > > > code: > > > > > > static const char * > > > getDateString () > > > { > > > static char buf[64]; // FIXME > > >

Re: [Flightgear-devel] a FIXME in fg_props.cxx

2003-11-12 Thread Gene Buckle
On Wed, 12 Nov 2003, Cameron Moore wrote: > * [EMAIL PROTECTED] (Gene Buckle) [2003.11.12 10:35]: > > code: > > > > static const char * > > getDateString () > > { > > static char buf[64]; // FIXME > > struct tm * t = globals->get_time_params()->getGmt(); > > sprintf(buf, "%.4d-%.2d

Re: [Flightgear-devel] a FIXME in fg_props.cxx

2003-11-12 Thread Cameron Moore
* [EMAIL PROTECTED] (Gene Buckle) [2003.11.12 10:35]: > code: > > static const char * > getDateString () > { > static char buf[64]; // FIXME > struct tm * t = globals->get_time_params()->getGmt(); > sprintf(buf, "%.4d-%.2d-%.2dT%.2d:%.2d:%.2d", > t->tm_year + 1900, t->tm_m

[Flightgear-devel] a FIXME in fg_props.cxx

2003-11-12 Thread Gene Buckle
code: static const char * getDateString () { static char buf[64]; // FIXME struct tm * t = globals->get_time_params()->getGmt(); sprintf(buf, "%.4d-%.2d-%.2dT%.2d:%.2d:%.2d", t->tm_year + 1900, t->tm_mon + 1, t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec); retu