]> git.mxchange.org Git - flightgear.git/blobdiff - src/Input/FGCommonInput.cxx
toggle fullscreen: also adapt GUI plane when resizing
[flightgear.git] / src / Input / FGCommonInput.cxx
index 20fe0e400de62d7e5f7f470a44a66ddae0561b1a..1419d2a01411dd51ace4712fe78c8370326e37bd 100644 (file)
 #include <Main/globals.hxx>
 #include <Main/fg_os.hxx>
 
-#include <simgear/math/SGMath.hxx>
+using simgear::PropertyList;
+using std::string;
 
-void FGCommonInput::read_bindings (const SGPropertyNode * node, binding_list_t * binding_list, int modifiers, string & module )
+void FGCommonInput::read_bindings (const SGPropertyNode * node, binding_list_t * binding_list, int modifiers, const string & module )
 {
   SG_LOG(SG_INPUT, SG_DEBUG, "Reading all bindings");
-  vector<SGPropertyNode_ptr> bindings = node->getChildren("binding");
-  string nasal = "nasal";
+  PropertyList bindings = node->getChildren("binding");
+  static string nasal = "nasal";
   for (unsigned int i = 0; i < bindings.size(); i++) {
     const char *cmd = bindings[i]->getStringValue("command");
     SG_LOG(SG_INPUT, SG_DEBUG, "Reading binding " << cmd);