mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-28 11:45:40 +08:00
Fixed missing compare index, message placeholder, and minor style fixes
This commit is contained in:
committed by
Mat Sutcliffe
parent
be9e2a37f3
commit
11187870de
@@ -125,7 +125,7 @@ namespace BlackCore
|
||||
m_udpSocket->bind(localAddress);
|
||||
m_voiceServerTimer->start(3000);
|
||||
|
||||
CLogMessage(this).info(u"Connected to voice server '%2'") << m_connection.getTokens().VoiceServer.addressIpV4;
|
||||
CLogMessage(this).info(u"Connected to voice server '%1'") << m_connection.getTokens().VoiceServer.addressIpV4;
|
||||
}
|
||||
|
||||
void CClientConnection::disconnectFromVoiceServer()
|
||||
|
||||
@@ -1236,14 +1236,14 @@ namespace BlackCore
|
||||
|
||||
void ISimulator::rapOnRecalculatedRenderedAircraft(const CAirspaceAircraftSnapshot &snapshot)
|
||||
{
|
||||
if (!this->isConnected()) { return; }
|
||||
if (!this->isConnected()) { return; }
|
||||
if (this->isShuttingDown()) { return; }
|
||||
this->onRecalculatedRenderedAircraft(snapshot);
|
||||
}
|
||||
|
||||
void ISimulator::rapOnRemoteProviderRemovedAircraft(const CCallsign &callsign)
|
||||
{
|
||||
Q_UNUSED(callsign);
|
||||
Q_UNUSED(callsign)
|
||||
// currently not used, the calls are handled by context call logicallyRemoveRemoteAircraft
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user