]> git.mxchange.org Git - flightgear.git/blob - src/Cockpit/hud_dnst.cxx
indentation, trailing spaces, ... (cosmetics only); doesn't make
[flightgear.git] / src / Cockpit / hud_dnst.cxx
1
2 #include "hud.hxx"
3
4
5 //============ Top of dual_instr_item class member definitions ============
6
7 dual_instr_item::dual_instr_item(
8         int          x,
9         int          y,
10         UINT         width,
11         UINT         height,
12         FLTFNPTR     chn1_source,
13         FLTFNPTR     chn2_source,
14         bool         working,
15         UINT         options ) :
16     instr_item( x, y, width, height,
17                 chn1_source, options, working),
18                 alt_data_source( chn2_source )
19 {
20 }
21
22
23 dual_instr_item::dual_instr_item( const dual_instr_item & image) :
24     instr_item ((instr_item &) image ),
25     alt_data_source( image.alt_data_source)
26 {
27 }
28