]> git.mxchange.org Git - simgear.git/blobdiff - simgear/nasal/cppbind/from_nasal.cxx
First working version of DOM like Canvas event handling
[simgear.git] / simgear / nasal / cppbind / from_nasal.cxx
index 03c4dc2e6fb234a60aa2819ab760000ff482dd82..0cede8c1a98dc5e30e0ad06435d051066e822027 100644 (file)
@@ -47,14 +47,14 @@ namespace nasal
   }
 
   //----------------------------------------------------------------------------
-  std::string from_nasal(naContext c, naRef ref, std::string*)
+  std::string from_nasal_helper(naContext c, naRef ref, std::string*)
   {
     naRef na_str = naStringValue(c, ref);
     return std::string(naStr_data(na_str), naStr_len(na_str));
   }
 
   //----------------------------------------------------------------------------
-  Hash from_nasal(naContext c, naRef ref, Hash*)
+  Hash from_nasal_helper(naContext c, naRef ref, Hash*)
   {
     if( !naIsHash(ref) )
       throw bad_nasal_cast("Not a hash");