summaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorRichard Moore <rich@kde.org>2011-11-11 23:08:42 +0000
committerQt by Nokia <qt-info@nokia.com>2011-11-14 10:39:47 +0100
commite66d3d98996c918162f2bf5bf94a0d356a39b5af (patch)
tree75862d157b9beb114d3293bc6d401b6b4b5827e2 /dist
parentfd3d7429b2b00fe2e3f8ca7b41a04273b42077e8 (diff)
Deprecate QSslCertificate::isValid() replace with isBlacklisted()
Currently isValid wrongly gives the impression it checks a certificate for validity - it doesn't. It merely checks if the certificate dates are valid and if the certificate is blacklisted. Since it's already easy for users to check the dates, let's just give them access to the ability to check for blacklisting. Change-Id: I25be3bde6a01063034702a9574b28469bf4882cd Reviewed-by: Peter Hartmann <peter.hartmann@nokia.com>
Diffstat (limited to 'dist')
-rw-r--r--dist/changes-5.0.05
1 files changed, 5 insertions, 0 deletions
diff --git a/dist/changes-5.0.0 b/dist/changes-5.0.0
index 2afb40077d..df36b2caf4 100644
--- a/dist/changes-5.0.0
+++ b/dist/changes-5.0.0
@@ -11,9 +11,14 @@ information about a particular change.
* Source incompatible changes *
****************************************************************************
+
- QSslCertificate::subjectInfo() and QSslCertificate::issuerInfo() now
return a QStringList instead of a QString
+- QSslCertificate::isValid() has been deprecated. Originally it only checked
+ the certificate dates, but later checking for blacklisting was added. Now
+ there's a more specific QSslCertificate::isBlacklisted() method.
+
- Unite clipping support has been removed from QPainter. The alternative is
to unite QRegion's and using the result on QPainter.