]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/globals.hxx
Fixed a problem with autodetecting if we need to draw our own mouse cursor
[flightgear.git] / src / Main / globals.hxx
index 72d3433eff7f0988427fb2a74a56be1b8bfd0a6d..fc1c52184b33894c1142725e8c1c811f5d66368b 100644 (file)
@@ -86,7 +86,7 @@ private:
     SGPropertyNode *initial_state;
 
     // list of serial port-like configurations
-    string_list channel_options_list;
+    string_list *channel_options_list;
 
 public:
 
@@ -132,8 +132,11 @@ public:
     inline SGPropertyNode *get_props () { return props; }
     inline void set_props( SGPropertyNode *n ) { props = n; }
 
-    inline string_list get_channel_options_list () {
-      return channel_options_list;
+    inline string_list *get_channel_options_list () {
+       return channel_options_list;
+    }
+    inline void set_channel_options_list( string_list *l ) {
+       channel_options_list = l;
     }