X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCockpit%2Fcockpit.hxx;h=7510574ada47a15625f263b86914d6591c303f3a;hb=72c7dc57fd6a7642c4f998feaa0a76b7d6e8e21d;hp=fce2a0a297824c5ae9bd058970795ae7d22c58bf;hpb=c90db01dc8d5462a3da22771ffa7c96f5ea31217;p=flightgear.git diff --git a/src/Cockpit/cockpit.hxx b/src/Cockpit/cockpit.hxx index fce2a0a29..7510574ad 100644 --- a/src/Cockpit/cockpit.hxx +++ b/src/Cockpit/cockpit.hxx @@ -40,12 +40,13 @@ class fg_Cockpit { private: int Code; - int Status; + int cockpitStatus; + SGPropertyNode * hud_status; public: - fg_Cockpit () : Code(1), Status(0) {}; + fg_Cockpit () : Code(1), cockpitStatus(0) {}; int code ( void ) { return Code; } - int status( void ) { return Status; } + int status( void ) { return cockpitStatus; } };