Android build config added

This commit is contained in:
pokamest 2021-08-01 19:57:04 +03:00
parent a49db653a1
commit 6d83e16aa7
690 changed files with 60066 additions and 13 deletions

View file

@ -940,12 +940,8 @@ void SshConnectionPrivate::connectToHost()
this, &SshConnectionPrivate::handleSocketConnected);
connect(m_socket, &QIODevice::readyRead,
this, &SshConnectionPrivate::handleIncomingData);
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
connect(m_socket, SIGNAL(error(QAbstractSocket::SocketError)), this,
SLOT(handleSocketError()));
#else
connect(m_socket, &QAbstractSocket::errorOccurred, this, &SshConnectionPrivate::handleSocketError);
#endif
connect(m_socket, &QAbstractSocket::disconnected,
this, &SshConnectionPrivate::handleSocketDisconnected);
connect(&m_timeoutTimer, &QTimer::timeout, this, &SshConnectionPrivate::handleTimeout);