diff options
author | Christian Kandeler <christian.kandeler@digia.com> | 2014-09-11 12:49:59 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@digia.com> | 2014-09-11 12:52:41 +0200 |
commit | 67d18670a36a58ec884460a6168fb2917ad98541 (patch) | |
tree | 6704f467bc0d6222cda8ec1eb7cc826df0844a58 | |
parent | 57527c2708131da120660027b5f98df2b6d93c19 (diff) | |
download | qt-creator-67d18670a36a58ec884460a6168fb2917ad98541.tar.gz |
SSH: Adapt test to signal renaming.
This was overlooked in the original patch.
Change-Id: I1709e28552ed9dd83bd3e810ba51ef5ec95d8580
Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
-rw-r--r-- | tests/manual/ssh/sftp/sftptest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/ssh/sftp/sftptest.cpp b/tests/manual/ssh/sftp/sftptest.cpp index 8f72a7d768..edc91c4c4d 100644 --- a/tests/manual/ssh/sftp/sftptest.cpp +++ b/tests/manual/ssh/sftp/sftptest.cpp @@ -80,7 +80,7 @@ void SftpTest::handleConnected() m_channel = m_connection->createSftpChannel(); connect(m_channel.data(), SIGNAL(initialized()), this, SLOT(handleChannelInitialized())); - connect(m_channel.data(), SIGNAL(initializationFailed(QString)), this, + connect(m_channel.data(), SIGNAL(channelError(QString)), this, SLOT(handleChannelInitializationFailure(QString))); connect(m_channel.data(), SIGNAL(finished(QSsh::SftpJobId,QString)), this, SLOT(handleJobFinished(QSsh::SftpJobId,QString))); |