-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Committed, thanks.
Tim

Hans Ulrich Niedermann wrote:
> avoid g++ warning about the members being initialized out of order
> 
> 
> ------------------------------------------------------------------------
> 
> Index: src/Cockpit/hud.hxx
> ===================================================================
> RCS file: /var/cvs/FlightGear-0.9/source/src/Cockpit/hud.hxx,v
> retrieving revision 1.38
> diff -u -p -r1.38 hud.hxx
> --- src/Cockpit/hud.hxx       22 Jan 2007 05:46:51 -0000      1.38
> +++ src/Cockpit/hud.hxx       22 Jul 2007 13:46:14 -0000
> @@ -241,7 +241,7 @@ public:
>       fgText(float x, float y, const string& c, bool digits=false): x(x), 
> y(y), msg( c), digit( digits) {};   
>  
>      fgText( const fgText & image )
> -             : x(image.x), y(image.y),digit(image.digit), msg( image.msg) { }
> +             : x(image.x), y(image.y), msg(image.msg), digit(image.digit) { }
>  
>       fgText& operator = ( const fgText & image ) {
>               x = image.x; y = image.y; msg= image.msg; digit = image.digit;
> 
> 
> ------------------------------------------------------------------------
> 
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> 
> 
> ------------------------------------------------------------------------
> 
> _______________________________________________
> Flightgear-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/flightgear-devel

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org

iD8DBQFGpZAIeDhWHdXrDRURAkSzAJoC1jTjoLDJhtvo4SE2J/Ty6fiZ7QCeMhJq
9lLyqj0Fo8aipaq4esSYV1k=
=7A6n
-----END PGP SIGNATURE-----

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Flightgear-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/flightgear-devel

Reply via email to