From c4b57f78900fdb21a8dd99cf8045f5c678eb656c Mon Sep 17 00:00:00 2001 From: Antti Kokko Date: Fri, 8 Jun 2018 10:29:40 +0300 Subject: Add changes file for Qt 5.11.1 Change-Id: I462965d2c5ca69c8c5b050f07d6e172a7ef03f7d Reviewed-by: Jesus Fernandez --- dist/changes-5.11.1 | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 dist/changes-5.11.1 diff --git a/dist/changes-5.11.1 b/dist/changes-5.11.1 new file mode 100644 index 0000000..030ea3f --- /dev/null +++ b/dist/changes-5.11.1 @@ -0,0 +1,24 @@ +Qt 5.11.1 is a bug-fix release. It maintains both forward and backward +compatibility (source and binary) with Qt 5.11.0. + +For more details, refer to the online documentation included in this +distribution. The documentation is also available online: + +http://doc.qt.io/qt-5/index.html + +The Qt version 5.11 series is binary compatible with the 5.10.x series. +Applications compiled for 5.10 will continue to run with 5.11. + +Some of the changes listed in this file include issue tracking numbers +corresponding to tasks in the Qt Bug Tracker: + +https://bugreports.qt.io/ + +Each of these identifiers can be entered in the bug tracker to obtain more +information about a particular change. + +**************************************************************************** +* Qt 5.11.1 Changes * +**************************************************************************** + + - This release contains only minor code improvements. -- cgit v1.2.3 From b2bd9e621549996c59ac68985be4628deef5b256 Mon Sep 17 00:00:00 2001 From: Jesus Fernandez Date: Mon, 18 Jun 2018 12:24:09 +0200 Subject: Fix warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaces a zero with a nullptr to remove a warning. Change-Id: I009b97a8605f842e283879a7f2ee440e16b3a62b Reviewed-by: Mårten Nordheim --- tests/auto/oauth1/tst_oauth1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/oauth1/tst_oauth1.cpp b/tests/auto/oauth1/tst_oauth1.cpp index 7bfc628..0ca373d 100644 --- a/tests/auto/oauth1/tst_oauth1.cpp +++ b/tests/auto/oauth1/tst_oauth1.cpp @@ -218,7 +218,7 @@ void tst_OAuth1::gotError() { if (loop) loop->exit(returnCode = Failure); - disconnect(QObject::sender(), SIGNAL(finished()), this, 0); + disconnect(QObject::sender(), SIGNAL(finished()), this, nullptr); } void tst_OAuth1::clientIdentifierSignal() -- cgit v1.2.3 From 420e26e46dd17847ac94d69b2ff6513bb0a52c71 Mon Sep 17 00:00:00 2001 From: Paul Wicking Date: Mon, 18 Jun 2018 15:40:12 +0200 Subject: Doc: Add missing dots (qtnetworkauth) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Task-number: QTBUG-68933 Change-Id: Iaa915bfb4158b06028885a98cdf9430f23c1fe09 Reviewed-by: Topi Reiniö --- src/oauth/qabstractoauthreplyhandler.cpp | 2 +- src/oauth/qoauth1signature.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/oauth/qabstractoauthreplyhandler.cpp b/src/oauth/qabstractoauthreplyhandler.cpp index 001ebed..b37dffc 100644 --- a/src/oauth/qabstractoauthreplyhandler.cpp +++ b/src/oauth/qabstractoauthreplyhandler.cpp @@ -40,7 +40,7 @@ QT_BEGIN_NAMESPACE \class QAbstractOAuthReplyHandler \inmodule QtNetworkAuth \ingroup oauth - \brief Handles replies to OAuth authentication requests + \brief Handles replies to OAuth authentication requests. \since 5.8 The QAbstractOAuthReplyHandler class handles the answers diff --git a/src/oauth/qoauth1signature.cpp b/src/oauth/qoauth1signature.cpp index 54d97c6..46d8874 100644 --- a/src/oauth/qoauth1signature.cpp +++ b/src/oauth/qoauth1signature.cpp @@ -47,7 +47,7 @@ Q_LOGGING_CATEGORY(loggingCategory, "qt.networkauth.oauth1.signature") \class QOAuth1Signature \inmodule QtNetworkAuth \ingroup oauth - \brief Implements OAuth 1 signature methods + \brief Implements OAuth 1 signature methods. \since 5.8 OAuth-authenticated requests can have two sets of credentials: -- cgit v1.2.3