1
0
Fork 0
flightgear/src/Cockpit/hud_dnst.cxx
mfranz ed7ee6b534 - fix two bugs
- remove yet more unused code
- cosmetics
2006-06-15 16:03:27 +00:00

19 lines
425 B
C++

#include "hud.hxx"
dual_instr_item::dual_instr_item(
int x,
int y,
UINT width,
UINT height,
FLTFNPTR chn1_source,
FLTFNPTR chn2_source,
bool working,
UINT options) :
instr_item(x, y, width, height,
chn1_source, options, working),
alt_data_source(chn2_source)
{
}