]> git.mxchange.org Git - flightgear.git/blobdiff - src/Navaids/fixlist.cxx
Fixed gauge spelling error.
[flightgear.git] / src / Navaids / fixlist.cxx
index f1dfedf9f8bf75ec18d40390dabed981c79cf608..55a083166f9d3737b72771c443ba007ea4624948 100644 (file)
 // $Id$
 
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include <simgear/debug/logstream.hxx>
 #include <simgear/misc/sgstream.hxx>
 #include <simgear/math/sg_geodesy.hxx>
@@ -61,10 +65,10 @@ bool FGFixList::init( SGPath path ) {
 #ifdef __MWERKS__
 
     char c = 0;
-    while ( in.get(c) && c != '\0' && fix.get_ident() != "[End]" ) {
+    while ( in.get(c) && c != '\0' && fix.get_ident() != (string)"[End]" ) {
         in.putback(c);
         in >> fix;
-       if ( fix.get_ident() != "[End]" ) {
+       if ( fix.get_ident() != (string)"[End]" ) {
            fixlist[fix.get_ident()] = fix;
        }
         in >> skipcomment;
@@ -72,7 +76,7 @@ bool FGFixList::init( SGPath path ) {
 
 #else
 
-    while ( ! in.eof() && fix.get_ident() != "[End]" ) {
+    while ( ! in.eof() && fix.get_ident() != (string)"[End]" ) {
         in >> fix;
        /* cout << "id = " << n.get_ident() << endl;
        cout << " type = " << n.get_type() << endl;
@@ -81,7 +85,7 @@ bool FGFixList::init( SGPath path ) {
        cout << " elev = " << n.get_elev() << endl;
        cout << " freq = " << n.get_freq() << endl;
        cout << " range = " << n.get_range() << endl; */
-       if ( fix.get_ident() != "[End]" ) {
+       if ( fix.get_ident() != (string)"[End]" ) {
            fixlist[fix.get_ident()] = fix;
        }
         in >> skipcomment;