Fix: Consistently use class for sshconnectionparameters

Change-Id: I4b281418589e3e86a59175cd0388c7f6c73619d3
Reviewed-on: http://codereview.qt.nokia.com/346
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
This commit is contained in:
Tobias Hunger
2011-06-04 20:40:59 +02:00
parent c95874f41d
commit 6e5db5f444
3 changed files with 4 additions and 3 deletions

View File

@@ -50,8 +50,9 @@ namespace Internal {
class SshConnectionPrivate;
} // namespace Internal
struct QTCREATOR_UTILS_EXPORT SshConnectionParameters
class QTCREATOR_UTILS_EXPORT SshConnectionParameters
{
public:
enum ProxyType { DefaultProxy, NoProxy };
enum AuthenticationType { AuthenticationByPassword, AuthenticationByKey };
SshConnectionParameters(ProxyType proxyType);