mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-30 20:15:35 +08:00
refs #395 Fixed MinGW errors from commit:e9f7810e.
This commit is contained in:
@@ -135,7 +135,7 @@ namespace BlackSimPlugin
|
||||
|
||||
CCallsignSet CSimulatorFs9::physicallyRenderedAircraft() const
|
||||
{
|
||||
return this->m_hashFs9Clients.keys();
|
||||
return CCollection<CCallsign>(this->m_hashFs9Clients.keys());
|
||||
}
|
||||
|
||||
bool CSimulatorFs9::updateOwnSimulatorCockpit(const CAircraft &ownAircraft, const QString &originator)
|
||||
|
||||
@@ -298,7 +298,7 @@ namespace BlackSimPlugin
|
||||
|
||||
CCallsignSet CSimulatorFsx::physicallyRenderedAircraft() const
|
||||
{
|
||||
return this->m_simConnectObjects.keys();
|
||||
return CCollection<CCallsign>(this->m_simConnectObjects.keys());
|
||||
}
|
||||
|
||||
void CSimulatorFsx::onSimRunning()
|
||||
|
||||
Reference in New Issue
Block a user