summaryrefslogtreecommitdiffstats
path: root/src/network/ssl/qsslcertificate.h
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@qt.io>2021-03-04 10:52:44 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-03-05 20:50:02 +0000
commit734ab493f7c05e06f4c8bc99884d8a99612c79c0 (patch)
tree905709f426c77176f4d057f0dace372ec1cb3767 /src/network/ssl/qsslcertificate.h
parent7402f4171d91f2dcd33fb14d4ee4a7665dc7e66e (diff)
Fix a BIC introduced by extending the namespace QSsl in _p.h files
Renamed the private part of the namespace to QTlsPrivate. Fixes: QTBUG-91531 Change-Id: Id2d9c458d8d958b35e437eee42889177dad0a7a7 Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io> (cherry picked from commit e4efa00c72c7011f4e5c27722c2a522b30274610) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src/network/ssl/qsslcertificate.h')
-rw-r--r--src/network/ssl/qsslcertificate.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/network/ssl/qsslcertificate.h b/src/network/ssl/qsslcertificate.h
index ea9c99adda..371bf6264a 100644
--- a/src/network/ssl/qsslcertificate.h
+++ b/src/network/ssl/qsslcertificate.h
@@ -66,12 +66,6 @@ class QSslCertificate;
// qHash is a friend, but we can't use default arguments for friends (§8.3.6.4)
Q_NETWORK_EXPORT size_t qHash(const QSslCertificate &key, size_t seed = 0) noexcept;
-namespace QSsl {
-
-class X509Certificate;
-
-} // namespace QSsl.
-
class QSslCertificatePrivate;
class Q_NETWORK_EXPORT QSslCertificate
{
@@ -158,7 +152,6 @@ public:
Qt::HANDLE handle() const;
private:
- QSsl::X509Certificate *backendImplementation() const;
QExplicitlySharedDataPointer<QSslCertificatePrivate> d;
friend class QSslCertificatePrivate;
friend class QSslSocketBackendPrivate;