Skip to content
Snippets Groups Projects
Commit 2c35a641 authored by Christian Kandeler's avatar Christian Kandeler
Browse files

Maemo: Fix SSH signal connections.

parent 7ad324fe
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment