]> git.mxchange.org Git - flightgear.git/blobdiff - src/Navaids/fixlist.cxx
make attribute strings lowercase with hyphen instead of underscore;
[flightgear.git] / src / Navaids / fixlist.cxx
index 608faf02e21c6429b262e3d642cffa6a57f0cfe7..c51534b1dd8c57095d2cc37f2090e3687238de45 100644 (file)
@@ -16,7 +16,7 @@
 //
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 //
 // $Id$
 
@@ -32,9 +32,6 @@
 #include "fixlist.hxx"
 
 
-FGFixList *current_fixlist;
-
-
 // Constructor
 FGFixList::FGFixList( void ) {
 }
@@ -47,7 +44,6 @@ FGFixList::~FGFixList( void ) {
 
 // load the navaids and build the map
 bool FGFixList::init( SGPath path ) {
-
     fixlist.erase( fixlist.begin(), fixlist.end() );
 
     sg_gzifstream in( path.str() );
@@ -83,7 +79,6 @@ bool FGFixList::init( SGPath path ) {
         fixlist[fix.get_ident()] = fix;
         in >> skipcomment;
     }
-    
     return true;
 }