Android build config added
This commit is contained in:
parent
a49db653a1
commit
6d83e16aa7
690 changed files with 60066 additions and 13 deletions
|
@ -138,12 +138,8 @@ SshAgent::SshAgent()
|
|||
{
|
||||
connect(&m_agentSocket, &QLocalSocket::connected, this, &SshAgent::handleConnected);
|
||||
connect(&m_agentSocket, &QLocalSocket::disconnected, this, &SshAgent::handleDisconnected);
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
|
||||
connect(&m_agentSocket, SIGNAL(error(QAbstractSocket::SocketError)), this,
|
||||
SLOT(handleSocketError()));
|
||||
#else
|
||||
connect(m_agentSocket, &QAbstractSocket::errorOccurred, this, &SshAgent::handleSocketError);
|
||||
#endif
|
||||
connect(&m_agentSocket, &QLocalSocket::readyRead, this, &SshAgent::handleIncomingData);
|
||||
QTimer::singleShot(0, this, &SshAgent::connectToServer);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue