mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-24 02:12:37 -04:00
Qt5.7 backwards compatibility
This commit is contained in:
parent
0ba5d7e1bf
commit
7bafb5b71e
@ -465,7 +465,11 @@ void MessageClient::set_server (QString const& server)
|
|||||||
{
|
{
|
||||||
// queue a host address lookup
|
// queue a host address lookup
|
||||||
TRACE_UDP ("server host DNS lookup:" << server);
|
TRACE_UDP ("server host DNS lookup:" << server);
|
||||||
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 9, 0)
|
||||||
m_->dns_lookup_id_ = QHostInfo::lookupHost (server, &*m_, &MessageClient::impl::host_info_results);
|
m_->dns_lookup_id_ = QHostInfo::lookupHost (server, &*m_, &MessageClient::impl::host_info_results);
|
||||||
|
#else
|
||||||
|
m_->dns_lookup_id_ = QHostInfo::lookupHost (server, &*m_, SLOT (host_info_results (QHostInfo)));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user