summaryrefslogtreecommitdiffstats
path: root/src/network/ssl/qsslcertificate.cpp
diff options
context:
space:
mode:
authorHarald Fernengel <harald@trolltech.com>2009-08-20 13:56:20 (GMT)
committerHarald Fernengel <harald@trolltech.com>2009-08-20 15:12:18 (GMT)
commitcba8480bb6b2552b20e3d923ea9425291e38c156 (patch)
tree398310f04a3da369c2ee1b3397e2a4443d12d158 /src/network/ssl/qsslcertificate.cpp
parentfe00645222c4a96a966c8f6938286cf136a6377a (diff)
downloadQt-cba8480bb6b2552b20e3d923ea9425291e38c156.zip
Qt-cba8480bb6b2552b20e3d923ea9425291e38c156.tar.gz
Qt-cba8480bb6b2552b20e3d923ea9425291e38c156.tar.bz2
Use QExcplicitlySharedDataPointer
Getting us closer to removing QScopedSharedPointer
Diffstat (limited to 'src/network/ssl/qsslcertificate.cpp')
-rw-r--r--src/network/ssl/qsslcertificate.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/network/ssl/qsslcertificate.cpp b/src/network/ssl/qsslcertificate.cpp
index 2ea6d9f..a09b8c43 100644
--- a/src/network/ssl/qsslcertificate.cpp
+++ b/src/network/ssl/qsslcertificate.cpp
@@ -159,9 +159,8 @@ QSslCertificate::QSslCertificate(const QByteArray &data, QSsl::EncodingFormat fo
/*!
Constructs an identical copy of \a other.
*/
-QSslCertificate::QSslCertificate(const QSslCertificate &other) : d(other.d.data())
+QSslCertificate::QSslCertificate(const QSslCertificate &other) : d(other.d)
{
- d->ref.ref();
}
/*!
@@ -177,7 +176,7 @@ QSslCertificate::~QSslCertificate()
*/
QSslCertificate &QSslCertificate::operator=(const QSslCertificate &other)
{
- d.assign(other.d.data());
+ d = other.d;
return *this;
}
@@ -243,7 +242,7 @@ void QSslCertificate::clear()
{
if (isNull())
return;
- d.reset(new QSslCertificatePrivate);
+ d = new QSslCertificatePrivate;
}
/*!