diff options
Diffstat (limited to 'client/SslClient.h')
-rw-r--r-- | client/SslClient.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/SslClient.h b/client/SslClient.h index 3a00de5..030c335 100644 --- a/client/SslClient.h +++ b/client/SslClient.h @@ -4,12 +4,12 @@ #include <QAbstractSocket> #include <QObject> +#include <QSslSocket> #include "client.h" using std::string; class QByteArray; -class QSslSocket; class QSslError; class QString; @@ -97,7 +97,7 @@ private slots: void PeerVerifyError(const QSslError &error); void SslErrors(const QList<QSslError> &errors); private: - QSslSocket *sslSocket; + QSslSocket sslSocket; QString server; unsigned short port; }; |