summaryrefslogtreecommitdiffstats
path: root/src/network/ssl/qsslcipher.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/ssl/qsslcipher.h')
-rw-r--r--src/network/ssl/qsslcipher.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/network/ssl/qsslcipher.h b/src/network/ssl/qsslcipher.h
index 404dc3db25..d9ac7a9449 100644
--- a/src/network/ssl/qsslcipher.h
+++ b/src/network/ssl/qsslcipher.h
@@ -44,6 +44,7 @@
#define QSSLCIPHER_H
#include <QtCore/qstring.h>
+#include <QtCore/qscopedpointer.h>
#include <QtNetwork/qssl.h>
QT_BEGIN_HEADER
@@ -78,7 +79,7 @@ public:
QSsl::SslProtocol protocol() const;
private:
- QSslCipherPrivate *d;
+ QScopedPointer<QSslCipherPrivate> d;
friend class QSslSocketBackendPrivate;
};