From 6e5ce494988694f7b743ce7906320fff4bc8e2e3 Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Fri, 3 May 2019 23:59:27 +0200 Subject: [PATCH] Ref T654, "G" is glider and NOT gyrocopter --- src/blackmisc/aviation/aircrafticaocode.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/blackmisc/aviation/aircrafticaocode.cpp b/src/blackmisc/aviation/aircrafticaocode.cpp index 96f0c281c..adee7570a 100644 --- a/src/blackmisc/aviation/aircrafticaocode.cpp +++ b/src/blackmisc/aviation/aircrafticaocode.cpp @@ -468,7 +468,8 @@ namespace BlackMisc if (!m_combinedType.isEmpty()) { if ( - m_combinedType.startsWith('G') || // gyrocopter + // Ref T654, G is GLIDER at the moment, G as gyrocopyter will be used as in future + // m_combinedType.startsWith('G') || // gyrocopter m_combinedType.startsWith('H') || // helicopter m_combinedType.startsWith('T') // tilt wing ) { return true; }