Home
last modified time | relevance | path

Searched refs:airtype (Results 1 – 3 of 3) sorted by relevance

/dports/astro/opencpn/OpenCPN-5.2.4/src/
H A DOCPNListCtrl.cpp122 int airtype = (pAISTarget->MMSI % 1000) / 100; in GetTargetColumnData() local
123 ret = airtype == 5 ? _("SAR Helicopter") :_("SAR Aircraft"); in GetTargetColumnData()
H A DAIS_Target_Data.cpp340 int airtype = (MMSI % 1000) / 100; in BuildQueryResult() local
341 ClassStr = airtype == 5 ? _("SAR Helicopter") : _("SAR Aircraft"); in BuildQueryResult()
720 int airtype = (MMSI % 1000) / 100; in GetRolloverString() local
721 result.Append(airtype == 5 ? _("SAR Helicopter") : _("SAR Aircraft")); in GetRolloverString()
H A Dais.cpp1399 int airtype = (td->MMSI % 1000)/100; // xxxyyy5zz >> helicopter in AISDrawTarget() local
1400 int ar = airtype == 5 ? 15 : 9; // array size in AISDrawTarget()
1404 if (airtype == 5) { in AISDrawTarget()