]> git.mxchange.org Git - flightgear.git/commitdiff
copyToCurrent removed.
authorJames Turner <zakalawe@mac.com>
Thu, 21 Jan 2016 01:37:26 +0000 (20:37 -0500)
committerJames Turner <zakalawe@mac.com>
Wed, 17 Feb 2016 21:25:39 +0000 (21:25 +0000)
src/Viewer/viewmgr.cxx
src/Viewer/viewmgr.hxx

index 85aef6cc6a883280042d51ae2994f037f6875f2a..0d2ed55460918635f9b934260c5e958a0083d168 100644 (file)
@@ -79,7 +79,6 @@ FGViewMgr::init ()
       }
   }
 
-  copyToCurrent();
   do_bind();
 
     get_current_view()->bind();
@@ -263,12 +262,6 @@ FGViewMgr::update (double dt)
   }
 }
 
-void
-FGViewMgr::copyToCurrent()
-{
-
-}
-
 void FGViewMgr::clear()
 {
     views.clear();
@@ -493,11 +486,6 @@ FGViewMgr::setView (int newview)
         get_current_view()->bind();
     }
 
-  // copy in view data
-  copyToCurrent();
-
-
-
     // force an update now, to avoid returning bogus data.
     // real fix would to be make all the accessors use the dirty mechanism
     // on FGViewer, so update() is a no-op.
index 7e4dfb5c9a7a15a9484a871fef51c197be6d407c..32a9e63f44818df5d6120651749ddd9b2ff33298 100644 (file)
@@ -131,9 +131,6 @@ private:
     double getCurrentViewFrame_y() const;
     double getCurrentViewFrame_z() const;
 
-    // copies current offset settings to current-view path...
-    void copyToCurrent ();
-    
     bool inited;
     SGPropertyNode_ptr view_number;
     std::vector<SGPropertyNode_ptr> config_list;