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

@@ -1715,9 +1715,9 @@ void DebuggerPluginPrivate::startRemoteEngine()
sp.connParams.pwd = dlg.password();
sp.connParams.timeout = 5;
sp.connParams.authType = SshConnectionParameters::AuthByPwd;
sp.connParams.authType = Utils::SshConnectionParameters::AuthByPwd;
sp.connParams.port = 22;
sp.connParams.proxyType = SshConnectionParameters::NoProxy;
sp.connParams.proxyType = Utils::SshConnectionParameters::NoProxy;
sp.executable = dlg.inferiorPath();
sp.serverStartScript = dlg.enginePath();