refs #246 renamed host to server to avoid ambiguity

This commit is contained in:
Mathew Sutcliffe
2014-06-12 15:27:33 +01:00
parent ab72dce8b5
commit 8dccc8d792
8 changed files with 20 additions and 20 deletions

View File

@@ -481,9 +481,9 @@ void Client::freqReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, c
std::cout << "FREQ_REPLY " << callsign << " " << freq << std::endl;
}
void Client::serverReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, const QString &hostname)
void Client::serverReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, const QString &server)
{
std::cout << "SERVER_REPLY " << callsign << " " << hostname.toStdString() << std::endl;
std::cout << "SERVER_REPLY " << callsign << " " << server.toStdString() << std::endl;
}
void Client::atcReplyReceived(const BlackMisc::Aviation::CCallsign &callsign, bool isATC)