SSH: Choose better names for public types and variables.

This commit is contained in:
Christian Kandeler
2011-02-15 13:33:52 +01:00
parent cfbf853dae
commit 22a49fd4a8
10 changed files with 48 additions and 47 deletions

View File

@@ -1711,11 +1711,11 @@ void DebuggerPluginPrivate::startRemoteEngine()
return;
sp.connParams.host = dlg.host();
sp.connParams.uname = dlg.username();
sp.connParams.pwd = dlg.password();
sp.connParams.userName = dlg.username();
sp.connParams.password = dlg.password();
sp.connParams.timeout = 5;
sp.connParams.authType = Utils::SshConnectionParameters::AuthByPwd;
sp.connParams.authorizationType = Utils::SshConnectionParameters::AuthorizationByPassword;
sp.connParams.port = 22;
sp.connParams.proxyType = Utils::SshConnectionParameters::NoProxy;