]> git.mxchange.org Git - flightgear.git/commitdiff
Remove dead variables.
authorfrohlich <frohlich>
Thu, 11 Jun 2009 09:19:32 +0000 (09:19 +0000)
committerTim Moore <timoore@redhat.com>
Thu, 11 Jun 2009 14:05:21 +0000 (16:05 +0200)
Modified Files:
./src/Model/acmodel.cxx ./src/Model/acmodel.hxx

src/Model/acmodel.cxx
src/Model/acmodel.hxx

index 9dc98c8e182489906d13bcafae36ca7a6d41c6e3..a1721228a3fd833f38a39ffc430168c520e2dbe5 100644 (file)
@@ -33,9 +33,7 @@
 ////////////////////////////////////////////////////////////////////////
 
 FGAircraftModel::FGAircraftModel ()
-  : _aircraft(0),
-    _nearplane(0.10f),
-    _farplane(1000.0f)
+  : _aircraft(0)
 {
 }
 
index ec30be8e8876e9dfdc6c6e5c887cc77e663eebab..16fc4552789325c3a46e405c989a01ff90bb1f18 100644 (file)
@@ -1,4 +1,4 @@
-#// model.hxx - manage a 3D aircraft model.
+// model.hxx - manage a 3D aircraft model.
 // Written by David Megginson, started 2002.
 //
 // This file is in the Public Domain, and comes with no warranty.
@@ -43,9 +43,6 @@ public:
 private:
 
   SGModelPlacement * _aircraft;
-  float _nearplane;
-  float _farplane;
-
 };
 
 #endif // __ACMODEL_HXX