Maemo: Fix SSH signal connections.

This commit is contained in:
Christian Kandeler
2010-10-06 10:53:33 +02:00
parent 7ad324feb3
commit 2c35a6417a
2 changed files with 2 additions and 2 deletions

View File

@@ -567,7 +567,7 @@ void MaemoDeployStep::connectToDevice()
m_connection = SshConnection::create();
connect(m_connection.data(), SIGNAL(connected()), this,
SLOT(handleConnected()));
connect(m_connection.data(), SIGNAL(error(SshError)), this,
connect(m_connection.data(), SIGNAL(error(Core::SshError)), this,
SLOT(handleConnectionFailure()));
if (canReUse) {
unmountOldDirs();

View File

@@ -93,7 +93,7 @@ void MaemoSshRunner::start()
m_connection = SshConnection::create();
connect(m_connection.data(), SIGNAL(connected()), this,
SLOT(handleConnected()));
connect(m_connection.data(), SIGNAL(error(SshError)), this,
connect(m_connection.data(), SIGNAL(error(Core::SshError)), this,
SLOT(handleConnectionFailure()));
if (reUse) {
handleConnected();