From 908935542be3f47d250d8fee92fed7b7cd2b53d3 Mon Sep 17 00:00:00 2001 From: Antti Kokko Date: Thu, 9 Jan 2020 10:28:07 +0200 Subject: Add changes file for Qt 5.14.1 + f2dde34d7d97616e027d7e37c7d6ef098723c2a1 Bump version Change-Id: I7441a4780e7546529c16f5b769bd3d900f627122 Reviewed-by: Jani Heikkinen --- dist/changes-5.14.1 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dist/changes-5.14.1 diff --git a/dist/changes-5.14.1 b/dist/changes-5.14.1 new file mode 100644 index 0000000..d008638 --- /dev/null +++ b/dist/changes-5.14.1 @@ -0,0 +1,20 @@ +Qt 5.14.1 is a bug-fix release. It maintains both forward and backward +compatibility (source and binary) with Qt 5.14.0. + +For more details, refer to the online documentation included in this +distribution. The documentation is also available online: + +https://doc.qt.io/qt-5/index.html + +The Qt version 5.14 series is binary compatible with the 5.13.x series. +Applications compiled for 5.13 will continue to run with 5.14. + +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. + + - This release contains only minor code improvements. -- cgit v1.2.3 From ed91358ec20bb96fe2eff1b9dfaf772c9b1dba5d Mon Sep 17 00:00:00 2001 From: Timur Pocheptsov Date: Wed, 15 Jan 2020 11:39:45 +0100 Subject: Use QNetworkReply::networkError() instead of deprecated error() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Task-number: QTBUG-80369 Change-Id: I9bd16bd0a1bd7a306622db03e012eb408e4bc6ea Reviewed-by: Mårten Nordheim --- src/imports/winextras/qquickiconloader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imports/winextras/qquickiconloader.cpp b/src/imports/winextras/qquickiconloader.cpp index b5b7e5b..311a8c8 100644 --- a/src/imports/winextras/qquickiconloader.cpp +++ b/src/imports/winextras/qquickiconloader.cpp @@ -124,7 +124,7 @@ void QQuickIconLoaderNetworkReplyHandler::onRequestFinished() { auto *reply = qobject_cast(sender()); Q_ASSERT(reply); - if (reply->error() != QNetworkReply::NoError) { + if (reply->networkError() != QNetworkReply::NoError) { qWarning() << Q_FUNC_INFO << reply->url() << "failed:" << reply->errorString(); return; } -- cgit v1.2.3 From 9beac3cc9bcb1806ad1f8118a70467c122b9e938 Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Sun, 2 Feb 2020 13:42:30 +0100 Subject: Bump version Change-Id: I57c95c00c9e1a2f8e1ce8f34dd863bc4060f6472 --- .qmake.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.qmake.conf b/.qmake.conf index 4e8875e..fb8191e 100644 --- a/.qmake.conf +++ b/.qmake.conf @@ -2,4 +2,4 @@ load(qt_build_config) DEFINES += QT_NO_FOREACH -MODULE_VERSION = 5.14.1 +MODULE_VERSION = 5.14.2 -- cgit v1.2.3 From 0d5ce87e1aeaed361c8d034e8329c0ceca62e42a Mon Sep 17 00:00:00 2001 From: Yuhang Zhao <2546789017@qq.com> Date: Fri, 14 Feb 2020 08:39:51 +0800 Subject: Remove confusing documentation QtWin::extendFrameIntoClientArea: You should set Qt::WA_NoSystemBackground for it to work QtWin::resetExtendedFrame: You must unset Qt::WA_NoSystemBackground for it to work Actual result: Set Qt::WA_NoSystemBackground and then call QtWin::extendFrameIntoClientArea results in a black window. So the documentation of QtWin::resetExtendedFrame is correct. Fixes: QTBUG-81831 Change-Id: I0fafb7049d65fa22eeb1b167a6227042f2fefe73 Reviewed-by: Friedemann Kleint --- src/winextras/qwinfunctions.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/winextras/qwinfunctions.cpp b/src/winextras/qwinfunctions.cpp index b237a50..4dcf8f0 100644 --- a/src/winextras/qwinfunctions.cpp +++ b/src/winextras/qwinfunctions.cpp @@ -1664,8 +1664,8 @@ void qt_ExtendFrameIntoClientArea(QWindow *window, int left, int top, int right, If you want the extended frame to act like a standard window border, you should handle that yourself. - \note If \a window is a QWidget handle, set the - Qt::WA_NoSystemBackground attribute for your widget. + \note Qt::WA_NoSystemBackground must not be set on widgets for + extendFrameIntoClientArea() to work. \sa resetExtendedFrame() */ @@ -1709,7 +1709,7 @@ void QtWin::extendFrameIntoClientArea(QWindow *window, const QMargins &margins) This convenience function calls extendFrameIntoClientArea() with margins set to 0. - \note You must unset the Qt::WA_NoSystemBackground attribute for + \note Qt::WA_NoSystemBackground must not be set on widgets for extendFrameIntoClientArea() to work. \sa extendFrameIntoClientArea() -- cgit v1.2.3 From d5310efd2fbbe9786a4257f3ada78381cb54da23 Mon Sep 17 00:00:00 2001 From: Timur Pocheptsov Date: Mon, 24 Feb 2020 16:06:48 +0000 Subject: Revert "Use QNetworkReply::networkError() instead of deprecated error()" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit ed91358ec20bb96fe2eff1b9dfaf772c9b1dba5d. Naming in QProcess is considered to be the correct one and the rule. Change-Id: Iaca8e2661454ace9f73b0fbbae0bf429153f0268 Reviewed-by: Mårten Nordheim --- src/imports/winextras/qquickiconloader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imports/winextras/qquickiconloader.cpp b/src/imports/winextras/qquickiconloader.cpp index 311a8c8..b5b7e5b 100644 --- a/src/imports/winextras/qquickiconloader.cpp +++ b/src/imports/winextras/qquickiconloader.cpp @@ -124,7 +124,7 @@ void QQuickIconLoaderNetworkReplyHandler::onRequestFinished() { auto *reply = qobject_cast(sender()); Q_ASSERT(reply); - if (reply->networkError() != QNetworkReply::NoError) { + if (reply->error() != QNetworkReply::NoError) { qWarning() << Q_FUNC_INFO << reply->url() << "failed:" << reply->errorString(); return; } -- cgit v1.2.3