]> git.mxchange.org Git - flightgear.git/blobdiff - src/Cockpit/hud_inst.cxx
Port over remaining Point3D usage to the more type and unit safe SG* classes.
[flightgear.git] / src / Cockpit / hud_inst.cxx
index ec056c5e3d5b73c916a964f1fc6ff71f8162d321..8f897b5949ebff420851ac8b33fb621036c95afc 100644 (file)
@@ -57,21 +57,6 @@ instr_item::instr_item(
 }
 
 
-// copy constructor
-instr_item::instr_item( const instr_item & image ) :
-    handle       ( ++instances        ),
-    scrn_pos     ( image.scrn_pos     ),
-    load_value_fn( image.load_value_fn),
-    disp_factor  ( image.disp_factor  ),
-    opts         ( image.opts         ),
-    is_enabled   ( image.is_enabled   ),
-    broken       ( image.broken       ),
-    scr_span     ( image.scr_span     ),
-    mid_span     ( image.mid_span     )
-{
-}
-
-
 instr_item::~instr_item ()
 {
     if (instances)
@@ -79,10 +64,6 @@ instr_item::~instr_item ()
 }
 
 
-void instr_item::update( void )
-{
-}
-
 // break_display       This is emplaced to provide hooks for making
 //                     instruments unreliable. The default behavior is
 // to simply not display, but more sophisticated behavior is available