refs #707, renamed to FSInn / FSInnData

This commit is contained in:
Klaus Basan
2016-07-12 03:12:38 +02:00
parent caa6947ff9
commit 64fa88da72
5 changed files with 8 additions and 8 deletions

View File

@@ -514,7 +514,7 @@ namespace BlackCore
/*!
* We received an FSInn custom packet.
*/
void customFSinnPacketReceived(const BlackMisc::Aviation::CCallsign &callsign, const QString &airlineDesignator,
void customFSInnPacketReceived(const BlackMisc::Aviation::CCallsign &callsign, const QString &airlineDesignator,
const QString &aircraftDesignator, const QString &combinedType, const QString &modelString);
//! We received a aircraft config packet

View File

@@ -909,7 +909,7 @@ namespace BlackCore
{
// It doesn't matter whether it was a query or response. The information
// is the same for both.
emit customFSinnPacketReceived(callsign, data[1], data[2], data[7], data[8]);
emit customFSInnPacketReceived(callsign, data[1], data[2], data[7], data[8]);
}
}
else if (packetId.compare("FSIPIR", Qt::CaseInsensitive) == 0)
@@ -923,7 +923,7 @@ namespace BlackCore
sendCustomFsinnReponse(callsign);
// It doesn't matter whether it was a query or response. The information
// is the same for both.
emit customFSinnPacketReceived(callsign, data[1], data[2], data[7], data[8]);
emit customFSInnPacketReceived(callsign, data[1], data[2], data[7], data[8]);
}
}
}