move src/plugins/coreplugin/ssh to src/lib/utils/ssh

Merge-request: 253
Reviewed-by: hjk <qtc-committer@nokia.com>
This commit is contained in:
Milian Wolff
2011-02-14 16:34:17 +01:00
committed by hjk
parent 3b2804d01a
commit 94548a1e1f
85 changed files with 341 additions and 337 deletions

View File

@@ -33,11 +33,11 @@
****************************************************************************/
#include "maemokeydeployer.h"
#include <coreplugin/ssh/sshremoteprocessrunner.h>
#include <utils/ssh/sshremoteprocessrunner.h>
#include <QtCore/QFile>
using namespace Core;
using namespace Utils;
namespace Qt4ProjectManager {
namespace Internal {
@@ -68,7 +68,7 @@ void MaemoKeyDeployer::deployPublicKey(const SshConnectionParameters &sshParams,
return;
}
connect(m_deployProcess.data(), SIGNAL(connectionError(Core::SshError)), this,
connect(m_deployProcess.data(), SIGNAL(connectionError(Utils::SshError)), this,
SLOT(handleConnectionFailure()));
connect(m_deployProcess.data(), SIGNAL(processClosed(int)), this,
SLOT(handleKeyUploadFinished(int)));