]> git.mxchange.org Git - flightgear.git/blobdiff - src/Navaids/fixlist.cxx
More fg -> sg namespace changes in simgear.
[flightgear.git] / src / Navaids / fixlist.cxx
index bb7c643df343ba8d0cc2c30f718f51ad16431175..f1dfedf9f8bf75ec18d40390dabed981c79cf608 100644 (file)
@@ -22,7 +22,7 @@
 
 
 #include <simgear/debug/logstream.hxx>
-#include <simgear/misc/fgstream.hxx>
+#include <simgear/misc/sgstream.hxx>
 #include <simgear/math/sg_geodesy.hxx>
 
 #include "fixlist.hxx"
@@ -42,12 +42,12 @@ FGFixList::~FGFixList( void ) {
 
 
 // load the navaids and build the map
-bool FGFixList::init( FGPath path ) {
+bool FGFixList::init( SGPath path ) {
     FGFix fix;
 
     fixlist.erase( fixlist.begin(), fixlist.end() );
 
-    fg_gzifstream in( path.str() );
+    sg_gzifstream in( path.str() );
     if ( !in.is_open() ) {
         SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << path.str() );
         exit(-1);