]> git.mxchange.org Git - flightgear.git/commitdiff
Pending white space tweaks I forgot to commit the other day.
authorcurt <curt>
Mon, 14 Jun 2004 18:47:21 +0000 (18:47 +0000)
committercurt <curt>
Mon, 14 Jun 2004 18:47:21 +0000 (18:47 +0000)
src/Main/globals.cxx
src/Main/globals.hxx

index aa9f37aa2d870e4b725d0d220a2b822a0f552573..b2b862fba5f39e90168ec6789fe9f62a47ed058b 100644 (file)
@@ -71,7 +71,7 @@ FGGlobals::FGGlobals() :
     acmodel( NULL ),
     model_mgr( NULL ),
     channel_options_list( NULL ),
-    initial_waypoints(0),
+    initial_waypoints( NULL ),
     scenery( NULL ),
     tile_mgr( NULL ),
     io( new FGIO ),
index 1446e0921f50cb95a0814851b430dd3323cb3b79..3077e750e6bff38150693f5ef8d3287f443be90d 100644 (file)
@@ -97,8 +97,8 @@ class FGGlobals
 
 private:
 
-    SGSubsystemMgr * subsystem_mgr;
-    SGEventMgr * event_mgr;
+    SGSubsystemMgr *subsystem_mgr;
+    SGEventMgr *event_mgr;
 
     // Number of milliseconds elapsed since the start of the program.
     double sim_time_sec;
@@ -217,9 +217,9 @@ public:
     FGGlobals();
     virtual ~FGGlobals();
 
-    virtual SGSubsystemMgr * get_subsystem_mgr () const;
+    virtual SGSubsystemMgr *get_subsystem_mgr () const;
 
-    virtual SGSubsystem * get_subsystem (const char * name);
+    virtual SGSubsystem *get_subsystem (const char * name);
 
     virtual void add_subsystem (const char * name,
                                 SGSubsystem * subsystem,
@@ -227,7 +227,7 @@ public:
                                 type = SGSubsystemMgr::GENERAL,
                                 double min_time_sec = 0);
 
-    virtual SGEventMgr * get_event_mgr () const;
+    virtual SGEventMgr *get_event_mgr () const;
 
     inline double get_sim_time_sec () const { return sim_time_sec; }
     inline void inc_sim_time_sec (double dt) { sim_time_sec += dt; }