diff -Nru qttools-opensource-src-5.15.2/debian/changelog qttools-opensource-src-5.15.3/debian/changelog --- qttools-opensource-src-5.15.2/debian/changelog 2021-02-26 12:03:50.000000000 +0000 +++ qttools-opensource-src-5.15.3/debian/changelog 2022-03-08 15:42:24.000000000 +0000 @@ -1,3 +1,13 @@ +qttools-opensource-src (5.15.3-1) experimental; urgency=medium + + * New upstream release. + * Update debian/watch. + * Bump Qt build-dependencies to 5.15.3. + * Bump Standards-Version to 4.6.0, no changes needed. + * Drop reproducible_lastModified.diff, included in the new release. + + -- Dmitry Shachnev Tue, 08 Mar 2022 18:42:24 +0300 + qttools-opensource-src (5.15.2-5) unstable; urgency=medium * Make qdbus transitional package Multi-Arch: foreign (closes: #983560). diff -Nru qttools-opensource-src-5.15.2/debian/control qttools-opensource-src-5.15.3/debian/control --- qttools-opensource-src-5.15.2/debian/control 2021-02-26 12:03:50.000000000 +0000 +++ qttools-opensource-src-5.15.3/debian/control 2022-03-08 15:42:24.000000000 +0000 @@ -11,17 +11,17 @@ Simon Quigley Build-Depends: debhelper-compat (= 13), libclang-dev (>= 1:3.9~) [amd64 arm64 armel armhf hurd-i386 i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390x sparc64], - libqt5opengl5-dev (>= 5.15.2+dfsg~), - libqt5sql5-sqlite (>= 5.15.2+dfsg~), + libqt5opengl5-dev (>= 5.15.3+dfsg~), + libqt5sql5-sqlite (>= 5.15.3+dfsg~), libqt5webkit5-dev (>= 5.212.0~alpha4-8~) [alpha amd64 arm64 armel armhf i386 mips64el mipsel ppc64 ppc64el riscv64 s390x sh4 x32], llvm-dev (>= 1:3.9~) [amd64 arm64 armel armhf hurd-i386 i386 mips mips64 mips64el mips64r6 mips64r6el mipsel mipsr6 mipsr6el powerpc ppc64 ppc64el riscv64 s390x sparc64], pkg-kde-tools, - qtbase5-private-dev (>= 5.15.2+dfsg~), - qtdeclarative5-private-dev (>= 5.15.2+dfsg~), + qtbase5-private-dev (>= 5.15.3+dfsg~), + qtdeclarative5-private-dev (>= 5.15.3+dfsg~), zlib1g-dev Build-Depends-Indep: llvm-dev (>= 1:3.9~) , - qtbase5-doc-html (>= 5.15.2+dfsg~) -Standards-Version: 4.5.1 + qtbase5-doc-html (>= 5.15.3+dfsg~) +Standards-Version: 4.6.0 Homepage: https://www.qt.io/developers/ Vcs-Git: https://salsa.debian.org/qt-kde-team/qt/qttools.git Vcs-Browser: https://salsa.debian.org/qt-kde-team/qt/qttools diff -Nru qttools-opensource-src-5.15.2/debian/patches/reproducible_lastModified.diff qttools-opensource-src-5.15.3/debian/patches/reproducible_lastModified.diff --- qttools-opensource-src-5.15.2/debian/patches/reproducible_lastModified.diff 2021-02-26 12:03:50.000000000 +0000 +++ qttools-opensource-src-5.15.3/debian/patches/reproducible_lastModified.diff 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -Description: clamp registered collection time-stamp to SOURCE_DATE_EPOCH if set -Origin: upstream, https://code.qt.io/cgit/qt/qttools.git/commit/?id=33693a928986006d -Last-Update: 2020-12-04 - ---- a/src/assistant/help/qhelpcollectionhandler.cpp -+++ b/src/assistant/help/qhelpcollectionhandler.cpp -@@ -2197,7 +2197,15 @@ bool QHelpCollectionHandler::registerInd - m_query->addBindValue(fileName); - const QFileInfo fi(absoluteDocPath(fileName)); - m_query->addBindValue(fi.size()); -- m_query->addBindValue(fi.lastModified().toString(Qt::ISODate)); -+ QDateTime lastModified = fi.lastModified(); -+ if (qEnvironmentVariableIsSet("SOURCE_DATE_EPOCH")) { -+ const QString sourceDateEpochStr = qEnvironmentVariable("SOURCE_DATE_EPOCH"); -+ bool ok; -+ const qlonglong sourceDateEpoch = sourceDateEpochStr.toLongLong(&ok); -+ if (ok && sourceDateEpoch < lastModified.toSecsSinceEpoch()) -+ lastModified.setSecsSinceEpoch(sourceDateEpoch); -+ } -+ m_query->addBindValue(lastModified.toString(Qt::ISODate)); - if (!m_query->exec()) - return false; - diff -Nru qttools-opensource-src-5.15.2/debian/patches/series qttools-opensource-src-5.15.3/debian/patches/series --- qttools-opensource-src-5.15.2/debian/patches/series 2021-02-26 12:03:50.000000000 +0000 +++ qttools-opensource-src-5.15.3/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -reproducible_lastModified.diff diff -Nru qttools-opensource-src-5.15.2/debian/watch qttools-opensource-src-5.15.3/debian/watch --- qttools-opensource-src-5.15.2/debian/watch 2021-02-26 12:03:50.000000000 +0000 +++ qttools-opensource-src-5.15.3/debian/watch 2022-03-08 15:42:24.000000000 +0000 @@ -1,2 +1,2 @@ version=4 -https://download.qt.io/archive/qt/5.15/([\d\.]*)/submodules/qttools-everywhere-src-([^-]*)\.tar\.xz +https://download.qt.io/archive/qt/5.15/([\d\.]*)/submodules/qttools-everywhere-opensource-src-([^-]*)\.tar\.xz diff -Nru qttools-opensource-src-5.15.2/dist/changes-5.12.10 qttools-opensource-src-5.15.3/dist/changes-5.12.10 --- qttools-opensource-src-5.15.2/dist/changes-5.12.10 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/dist/changes-5.12.10 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1,26 @@ +Qt 5.12.10 is a bug-fix release. It maintains both forward and backward +compatibility (source and binary) with Qt 5.12.9. + +For more details, refer to the online documentation included in this +distribution. The documentation is also available online: + + https://doc.qt.io/qt-5.12/index.html + +The Qt version 5.12 series is binary compatible with the 5.11.x series. +Applications compiled for 5.11 will continue to run with 5.12. + +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. + +**************************************************************************** +* Important Behavior Changes * +**************************************************************************** + +**************************************************************************** +* Library * +**************************************************************************** diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/abstractdialoggui_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/abstractdialoggui_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/abstractdialoggui_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/abstractdialoggui_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/sdk/abstractdialoggui_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/abstractintrospection_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/abstractintrospection_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/abstractintrospection_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/abstractintrospection_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/sdk/abstractintrospection_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/actioneditor_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/actioneditor_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/actioneditor_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/actioneditor_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/actioneditor_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/actionprovider_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/actionprovider_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/actionprovider_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/actionprovider_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/actionprovider_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/actionrepository_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/actionrepository_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/actionrepository_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/actionrepository_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/actionrepository_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/codedialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/codedialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/codedialog_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/codedialog_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/codedialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/connectionedit_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/connectionedit_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/connectionedit_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/connectionedit_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/connectionedit_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/csshighlighter_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/csshighlighter_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/csshighlighter_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/csshighlighter_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/csshighlighter_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/deviceprofile_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/deviceprofile_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/deviceprofile_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/deviceprofile_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/deviceprofile_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/dialoggui_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/dialoggui_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/dialoggui_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/dialoggui_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/dialoggui_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/extensionfactory_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/extensionfactory_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/extensionfactory_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/extensionfactory_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/extensionfactory_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/formbuilderextra_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/formbuilderextra_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/formbuilderextra_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/formbuilderextra_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/uilib/formbuilderextra_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/formlayoutmenu_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/formlayoutmenu_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/formlayoutmenu_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/formlayoutmenu_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/formlayoutmenu_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/formwindowbase_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/formwindowbase_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/formwindowbase_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/formwindowbase_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/formwindowbase_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/gridpanel_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/gridpanel_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/gridpanel_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/gridpanel_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/gridpanel_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/grid_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/grid_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/grid_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/grid_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/grid_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/htmlhighlighter_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/htmlhighlighter_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/htmlhighlighter_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/htmlhighlighter_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/htmlhighlighter_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/iconloader_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/iconloader_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/iconloader_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/iconloader_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/iconloader_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/iconselector_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/iconselector_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/iconselector_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/iconselector_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/iconselector_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/invisible_widget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/invisible_widget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/invisible_widget_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/invisible_widget_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/invisible_widget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/layoutinfo_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/layoutinfo_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/layoutinfo_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/layoutinfo_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/layoutinfo_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/layout_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/layout_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/layout_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/layout_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/layout_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/lib_pch.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/lib_pch.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/lib_pch.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/lib_pch.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/lib_pch.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/metadatabase_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/metadatabase_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/metadatabase_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/metadatabase_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/metadatabase_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/morphmenu_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/morphmenu_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/morphmenu_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/morphmenu_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/morphmenu_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/newactiondialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/newactiondialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/newactiondialog_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/newactiondialog_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/newactiondialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/newformwidget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/newformwidget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/newformwidget_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/newformwidget_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/newformwidget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/orderdialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/orderdialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/orderdialog_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/orderdialog_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/orderdialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/plaintexteditor_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/plaintexteditor_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/plaintexteditor_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/plaintexteditor_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/plaintexteditor_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/plugindialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/plugindialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/plugindialog_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/plugindialog_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/plugindialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/pluginmanager_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/pluginmanager_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/pluginmanager_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/pluginmanager_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/pluginmanager_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/previewconfigurationwidget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/previewconfigurationwidget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/previewconfigurationwidget_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/previewconfigurationwidget_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/previewconfigurationwidget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/previewmanager_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/previewmanager_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/previewmanager_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/previewmanager_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/previewmanager_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/promotionmodel_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/promotionmodel_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/promotionmodel_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/promotionmodel_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/promotionmodel_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/promotiontaskmenu_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/promotiontaskmenu_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/promotiontaskmenu_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/promotiontaskmenu_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/promotiontaskmenu_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/properties_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/properties_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/properties_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/properties_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/uilib/properties_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/propertylineedit_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/propertylineedit_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/propertylineedit_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/propertylineedit_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/propertylineedit_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_command2_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_command2_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_command2_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_command2_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_command2_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_command_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_command_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_command_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_command_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_command_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_dnditem_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_dnditem_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_dnditem_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_dnditem_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_dnditem_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_dockwidget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_dockwidget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_dockwidget_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_dockwidget_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_dockwidget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formbuilder_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formbuilder_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formbuilder_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formbuilder_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_formbuilder_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formeditorcommand_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formeditorcommand_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formeditorcommand_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formeditorcommand_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_formeditorcommand_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formwindowcommand_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formwindowcommand_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formwindowcommand_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formwindowcommand_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_formwindowcommand_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formwindowmanager_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formwindowmanager_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formwindowmanager_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_formwindowmanager_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_formwindowmanager_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_introspection_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_introspection_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_introspection_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_introspection_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_introspection_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_membersheet_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_membersheet_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_membersheet_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_membersheet_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_membersheet_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_menubar_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_menubar_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_menubar_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_menubar_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_menubar_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_menu_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_menu_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_menu_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_menu_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_menu_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_objectinspector_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_objectinspector_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_objectinspector_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_objectinspector_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_objectinspector_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_promotiondialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_promotiondialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_promotiondialog_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_promotiondialog_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_promotiondialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_promotion_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_promotion_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_promotion_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_promotion_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_promotion_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_propertycommand_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_propertycommand_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_propertycommand_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_propertycommand_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_propertycommand_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_propertyeditor_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_propertyeditor_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_propertyeditor_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_propertyeditor_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_propertyeditor_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_propertysheet_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_propertysheet_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_propertysheet_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_propertysheet_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_propertysheet_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_qsettings_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_qsettings_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_qsettings_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_qsettings_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_qsettings_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_stackedbox_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_stackedbox_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_stackedbox_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_stackedbox_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_stackedbox_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_tabwidget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_tabwidget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_tabwidget_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_tabwidget_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_tabwidget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_taskmenu_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_taskmenu_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_taskmenu_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_taskmenu_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_taskmenu_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_toolbar_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_toolbar_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_toolbar_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_toolbar_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_toolbar_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_toolbox_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_toolbox_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_toolbox_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_toolbox_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_toolbox_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_utils_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_utils_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_utils_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_utils_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_utils_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_widgetbox_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_widgetbox_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_widgetbox_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_widgetbox_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_widgetbox_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_widgetitem_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_widgetitem_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_widgetitem_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_widgetitem_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_widgetitem_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_widget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_widget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_widget_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qdesigner_widget_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qdesigner_widget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qlayout_widget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qlayout_widget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qlayout_widget_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qlayout_widget_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qlayout_widget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qsimpleresource_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qsimpleresource_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qsimpleresource_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qsimpleresource_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qsimpleresource_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qtresourceeditordialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qtresourceeditordialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qtresourceeditordialog_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qtresourceeditordialog_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qtresourceeditordialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qtresourcemodel_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qtresourcemodel_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qtresourcemodel_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qtresourcemodel_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qtresourcemodel_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qtresourceview_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qtresourceview_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/qtresourceview_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/qtresourceview_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/qtresourceview_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/rcc_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/rcc_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/rcc_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/rcc_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/rcc_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/resourcebuilder_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/resourcebuilder_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/resourcebuilder_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/resourcebuilder_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/uilib/resourcebuilder_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/richtexteditor_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/richtexteditor_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/richtexteditor_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/richtexteditor_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/richtexteditor_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/selectsignaldialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/selectsignaldialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/selectsignaldialog_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/selectsignaldialog_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/selectsignaldialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/shared_enums_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/shared_enums_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/shared_enums_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/shared_enums_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/shared_enums_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/shared_global_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/shared_global_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/shared_global_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/shared_global_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/shared_global_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/shared_settings_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/shared_settings_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/shared_settings_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/shared_settings_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/shared_settings_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/sheet_delegate_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/sheet_delegate_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/sheet_delegate_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/sheet_delegate_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/sheet_delegate_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/signalslotdialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/signalslotdialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/signalslotdialog_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/signalslotdialog_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/signalslotdialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/spacer_widget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/spacer_widget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/spacer_widget_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/spacer_widget_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/spacer_widget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/stylesheeteditor_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/stylesheeteditor_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/stylesheeteditor_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/stylesheeteditor_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/stylesheeteditor_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/textbuilder_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/textbuilder_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/textbuilder_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/textbuilder_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/uilib/textbuilder_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/textpropertyeditor_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/textpropertyeditor_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/textpropertyeditor_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/textpropertyeditor_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/textpropertyeditor_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/ui4_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/ui4_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/ui4_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/ui4_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/uilib/ui4_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/widgetdatabase_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/widgetdatabase_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/widgetdatabase_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/widgetdatabase_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/widgetdatabase_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/widgetfactory_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/widgetfactory_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/widgetfactory_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/widgetfactory_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/widgetfactory_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/zoomwidget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/zoomwidget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.2/QtDesigner/private/zoomwidget_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.2/QtDesigner/private/zoomwidget_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/lib/shared/zoomwidget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/abstractdialoggui_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/abstractdialoggui_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/abstractdialoggui_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/abstractdialoggui_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/sdk/abstractdialoggui_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/abstractintrospection_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/abstractintrospection_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/abstractintrospection_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/abstractintrospection_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/sdk/abstractintrospection_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/actioneditor_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/actioneditor_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/actioneditor_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/actioneditor_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/actioneditor_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/actionprovider_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/actionprovider_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/actionprovider_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/actionprovider_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/actionprovider_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/actionrepository_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/actionrepository_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/actionrepository_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/actionrepository_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/actionrepository_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/codedialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/codedialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/codedialog_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/codedialog_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/codedialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/connectionedit_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/connectionedit_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/connectionedit_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/connectionedit_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/connectionedit_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/csshighlighter_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/csshighlighter_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/csshighlighter_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/csshighlighter_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/csshighlighter_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/deviceprofile_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/deviceprofile_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/deviceprofile_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/deviceprofile_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/deviceprofile_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/dialoggui_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/dialoggui_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/dialoggui_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/dialoggui_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/dialoggui_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/extensionfactory_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/extensionfactory_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/extensionfactory_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/extensionfactory_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/extensionfactory_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/formbuilderextra_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/formbuilderextra_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/formbuilderextra_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/formbuilderextra_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/uilib/formbuilderextra_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/formlayoutmenu_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/formlayoutmenu_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/formlayoutmenu_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/formlayoutmenu_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/formlayoutmenu_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/formwindowbase_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/formwindowbase_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/formwindowbase_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/formwindowbase_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/formwindowbase_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/gridpanel_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/gridpanel_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/gridpanel_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/gridpanel_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/gridpanel_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/grid_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/grid_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/grid_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/grid_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/grid_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/htmlhighlighter_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/htmlhighlighter_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/htmlhighlighter_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/htmlhighlighter_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/htmlhighlighter_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/iconloader_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/iconloader_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/iconloader_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/iconloader_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/iconloader_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/iconselector_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/iconselector_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/iconselector_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/iconselector_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/iconselector_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/invisible_widget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/invisible_widget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/invisible_widget_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/invisible_widget_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/invisible_widget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/layoutinfo_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/layoutinfo_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/layoutinfo_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/layoutinfo_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/layoutinfo_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/layout_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/layout_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/layout_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/layout_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/layout_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/lib_pch.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/lib_pch.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/lib_pch.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/lib_pch.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/lib_pch.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/metadatabase_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/metadatabase_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/metadatabase_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/metadatabase_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/metadatabase_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/morphmenu_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/morphmenu_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/morphmenu_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/morphmenu_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/morphmenu_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/newactiondialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/newactiondialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/newactiondialog_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/newactiondialog_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/newactiondialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/newformwidget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/newformwidget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/newformwidget_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/newformwidget_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/newformwidget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/orderdialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/orderdialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/orderdialog_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/orderdialog_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/orderdialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/plaintexteditor_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/plaintexteditor_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/plaintexteditor_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/plaintexteditor_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/plaintexteditor_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/plugindialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/plugindialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/plugindialog_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/plugindialog_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/plugindialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/pluginmanager_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/pluginmanager_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/pluginmanager_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/pluginmanager_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/pluginmanager_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/previewconfigurationwidget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/previewconfigurationwidget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/previewconfigurationwidget_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/previewconfigurationwidget_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/previewconfigurationwidget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/previewmanager_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/previewmanager_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/previewmanager_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/previewmanager_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/previewmanager_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/promotionmodel_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/promotionmodel_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/promotionmodel_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/promotionmodel_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/promotionmodel_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/promotiontaskmenu_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/promotiontaskmenu_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/promotiontaskmenu_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/promotiontaskmenu_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/promotiontaskmenu_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/properties_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/properties_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/properties_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/properties_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/uilib/properties_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/propertylineedit_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/propertylineedit_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/propertylineedit_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/propertylineedit_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/propertylineedit_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_command2_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_command2_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_command2_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_command2_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_command2_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_command_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_command_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_command_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_command_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_command_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_dnditem_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_dnditem_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_dnditem_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_dnditem_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_dnditem_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_dockwidget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_dockwidget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_dockwidget_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_dockwidget_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_dockwidget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formbuilder_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formbuilder_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formbuilder_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formbuilder_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_formbuilder_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formeditorcommand_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formeditorcommand_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formeditorcommand_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formeditorcommand_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_formeditorcommand_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formwindowcommand_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formwindowcommand_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formwindowcommand_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formwindowcommand_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_formwindowcommand_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formwindowmanager_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formwindowmanager_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formwindowmanager_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_formwindowmanager_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_formwindowmanager_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_introspection_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_introspection_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_introspection_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_introspection_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_introspection_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_membersheet_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_membersheet_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_membersheet_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_membersheet_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_membersheet_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_menubar_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_menubar_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_menubar_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_menubar_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_menubar_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_menu_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_menu_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_menu_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_menu_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_menu_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_objectinspector_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_objectinspector_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_objectinspector_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_objectinspector_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_objectinspector_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_promotiondialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_promotiondialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_promotiondialog_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_promotiondialog_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_promotiondialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_promotion_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_promotion_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_promotion_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_promotion_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_promotion_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_propertycommand_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_propertycommand_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_propertycommand_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_propertycommand_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_propertycommand_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_propertyeditor_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_propertyeditor_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_propertyeditor_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_propertyeditor_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_propertyeditor_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_propertysheet_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_propertysheet_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_propertysheet_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_propertysheet_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_propertysheet_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_qsettings_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_qsettings_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_qsettings_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_qsettings_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_qsettings_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_stackedbox_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_stackedbox_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_stackedbox_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_stackedbox_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_stackedbox_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_tabwidget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_tabwidget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_tabwidget_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_tabwidget_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_tabwidget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_taskmenu_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_taskmenu_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_taskmenu_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_taskmenu_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_taskmenu_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_toolbar_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_toolbar_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_toolbar_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_toolbar_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_toolbar_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_toolbox_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_toolbox_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_toolbox_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_toolbox_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_toolbox_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_utils_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_utils_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_utils_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_utils_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_utils_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_widgetbox_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_widgetbox_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_widgetbox_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_widgetbox_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_widgetbox_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_widgetitem_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_widgetitem_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_widgetitem_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_widgetitem_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_widgetitem_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_widget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_widget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_widget_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qdesigner_widget_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qdesigner_widget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qlayout_widget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qlayout_widget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qlayout_widget_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qlayout_widget_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qlayout_widget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qsimpleresource_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qsimpleresource_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qsimpleresource_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qsimpleresource_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qsimpleresource_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qtresourceeditordialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qtresourceeditordialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qtresourceeditordialog_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qtresourceeditordialog_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qtresourceeditordialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qtresourcemodel_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qtresourcemodel_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qtresourcemodel_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qtresourcemodel_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qtresourcemodel_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qtresourceview_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qtresourceview_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/qtresourceview_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/qtresourceview_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/qtresourceview_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/rcc_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/rcc_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/rcc_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/rcc_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/rcc_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/resourcebuilder_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/resourcebuilder_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/resourcebuilder_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/resourcebuilder_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/uilib/resourcebuilder_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/richtexteditor_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/richtexteditor_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/richtexteditor_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/richtexteditor_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/richtexteditor_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/selectsignaldialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/selectsignaldialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/selectsignaldialog_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/selectsignaldialog_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/selectsignaldialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/shared_enums_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/shared_enums_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/shared_enums_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/shared_enums_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/shared_enums_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/shared_global_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/shared_global_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/shared_global_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/shared_global_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/shared_global_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/shared_settings_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/shared_settings_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/shared_settings_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/shared_settings_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/shared_settings_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/sheet_delegate_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/sheet_delegate_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/sheet_delegate_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/sheet_delegate_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/sheet_delegate_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/signalslotdialog_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/signalslotdialog_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/signalslotdialog_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/signalslotdialog_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/signalslotdialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/spacer_widget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/spacer_widget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/spacer_widget_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/spacer_widget_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/spacer_widget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/stylesheeteditor_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/stylesheeteditor_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/stylesheeteditor_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/stylesheeteditor_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/stylesheeteditor_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/textbuilder_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/textbuilder_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/textbuilder_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/textbuilder_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/uilib/textbuilder_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/textpropertyeditor_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/textpropertyeditor_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/textpropertyeditor_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/textpropertyeditor_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/textpropertyeditor_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/ui4_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/ui4_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/ui4_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/ui4_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/uilib/ui4_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/widgetdatabase_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/widgetdatabase_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/widgetdatabase_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/widgetdatabase_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/widgetdatabase_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/widgetfactory_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/widgetfactory_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/widgetfactory_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/widgetfactory_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/widgetfactory_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/zoomwidget_p.h qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/zoomwidget_p.h --- qttools-opensource-src-5.15.2/include/QtDesigner/5.15.3/QtDesigner/private/zoomwidget_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/5.15.3/QtDesigner/private/zoomwidget_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/lib/shared/zoomwidget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/headers.pri qttools-opensource-src-5.15.3/include/QtDesigner/headers.pri --- qttools-opensource-src-5.15.2/include/QtDesigner/headers.pri 2020-11-12 17:24:09.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/headers.pri 2021-03-29 18:26:53.000000000 +0000 @@ -1,5 +1,5 @@ SYNCQT.HEADER_FILES = components/qdesigner_components.h components/qdesigner_components_global.h extension/default_extensionfactory.h extension/extension.h extension/extension_global.h extension/qextensionmanager.h sdk/abstractactioneditor.h sdk/abstractdnditem.h sdk/abstractformeditor.h sdk/abstractformeditorplugin.h sdk/abstractformwindow.h sdk/abstractformwindowcursor.h sdk/abstractformwindowmanager.h sdk/abstractformwindowtool.h sdk/abstractintegration.h sdk/abstractlanguage.h sdk/abstractmetadatabase.h sdk/abstractnewformwidget.h sdk/abstractobjectinspector.h sdk/abstractoptionspage.h sdk/abstractpromotioninterface.h sdk/abstractpropertyeditor.h sdk/abstractresourcebrowser.h sdk/abstractsettings.h sdk/abstractwidgetbox.h sdk/abstractwidgetdatabase.h sdk/abstractwidgetfactory.h sdk/container.h sdk/dynamicpropertysheet.h sdk/extrainfo.h sdk/layoutdecoration.h sdk/membersheet.h sdk/propertysheet.h sdk/sdk_global.h sdk/taskmenu.h uilib/abstractformbuilder.h uilib/formbuilder.h uilib/uilib_global.h -SYNCQT.GENERATED_HEADER_FILES = QDesignerComponents QExtensionFactory QAbstractExtensionFactory QAbstractExtensionManager QExtensionManager QDesignerActionEditorInterface QDesignerDnDItemInterface QDesignerFormEditorInterface QDesignerFormEditorPluginInterface QDesignerFormWindowInterface QDesignerFormWindowCursorInterface QDesignerFormWindowManagerInterface QDesignerFormWindowToolInterface QDesignerIntegrationInterface QDesignerIntegration QDesignerLanguageExtension QDesignerMetaDataBaseItemInterface QDesignerMetaDataBaseInterface QDesignerNewFormWidgetInterface QDesignerObjectInspectorInterface QDesignerOptionsPageInterface QDesignerPromotionInterface QDesignerPropertyEditorInterface QDesignerResourceBrowserInterface QDesignerSettingsInterface QDesignerWidgetBoxInterface QDesignerWidgetDataBaseItemInterface QDesignerWidgetDataBaseInterface QDesignerWidgetFactoryInterface QDesignerContainerExtension QDesignerDynamicPropertySheetExtension QDesignerExtraInfoExtension QDesignerLayoutDecorationExtension QDesignerMemberSheetExtension QDesignerPropertySheetExtension QDesignerTaskMenuExtension QAbstractFormBuilder QFormBuilder QDesignerExportWidget QDesignerCustomWidgetInterface customwidget.h qdesignerexportwidget.h QDesignerCustomWidgetCollectionInterface qtdesignerversion.h QtDesignerVersion QtDesigner +SYNCQT.GENERATED_HEADER_FILES = QDesignerComponents QExtensionFactory QAbstractExtensionFactory QAbstractExtensionManager QExtensionManager QDesignerActionEditorInterface QDesignerDnDItemInterface QDesignerFormEditorInterface QDesignerFormEditorPluginInterface QDesignerFormWindowInterface QDesignerFormWindowCursorInterface QDesignerFormWindowManagerInterface QDesignerFormWindowToolInterface QDesignerIntegrationInterface QDesignerIntegration QDesignerLanguageExtension QDesignerMetaDataBaseItemInterface QDesignerMetaDataBaseInterface QDesignerNewFormWidgetInterface QDesignerObjectInspectorInterface QDesignerOptionsPageInterface QDesignerPromotionInterface QDesignerPropertyEditorInterface QDesignerResourceBrowserInterface QDesignerSettingsInterface QDesignerWidgetBoxInterface QDesignerWidgetDataBaseItemInterface QDesignerWidgetDataBaseInterface QDesignerWidgetFactoryInterface QDesignerContainerExtension QDesignerDynamicPropertySheetExtension QDesignerExtraInfoExtension QDesignerLayoutDecorationExtension QDesignerMemberSheetExtension QDesignerPropertySheetExtension QDesignerTaskMenuExtension QAbstractFormBuilder QFormBuilder QDesignerCustomWidgetInterface customwidget.h QDesignerExportWidget QDesignerCustomWidgetCollectionInterface qdesignerexportwidget.h qtdesignerversion.h QtDesignerVersion QtDesigner SYNCQT.PRIVATE_HEADER_FILES = lib_pch.h sdk/abstractdialoggui_p.h sdk/abstractintrospection_p.h shared/actioneditor_p.h shared/actionprovider_p.h shared/actionrepository_p.h shared/codedialog_p.h shared/connectionedit_p.h shared/csshighlighter_p.h shared/deviceprofile_p.h shared/dialoggui_p.h shared/extensionfactory_p.h shared/formlayoutmenu_p.h shared/formwindowbase_p.h shared/grid_p.h shared/gridpanel_p.h shared/htmlhighlighter_p.h shared/iconloader_p.h shared/iconselector_p.h shared/invisible_widget_p.h shared/layout_p.h shared/layoutinfo_p.h shared/metadatabase_p.h shared/morphmenu_p.h shared/newactiondialog_p.h shared/newformwidget_p.h shared/orderdialog_p.h shared/plaintexteditor_p.h shared/plugindialog_p.h shared/pluginmanager_p.h shared/previewconfigurationwidget_p.h shared/previewmanager_p.h shared/promotionmodel_p.h shared/promotiontaskmenu_p.h shared/propertylineedit_p.h shared/qdesigner_command2_p.h shared/qdesigner_command_p.h shared/qdesigner_dnditem_p.h shared/qdesigner_dockwidget_p.h shared/qdesigner_formbuilder_p.h shared/qdesigner_formeditorcommand_p.h shared/qdesigner_formwindowcommand_p.h shared/qdesigner_formwindowmanager_p.h shared/qdesigner_introspection_p.h shared/qdesigner_membersheet_p.h shared/qdesigner_menu_p.h shared/qdesigner_menubar_p.h shared/qdesigner_objectinspector_p.h shared/qdesigner_promotion_p.h shared/qdesigner_promotiondialog_p.h shared/qdesigner_propertycommand_p.h shared/qdesigner_propertyeditor_p.h shared/qdesigner_propertysheet_p.h shared/qdesigner_qsettings_p.h shared/qdesigner_stackedbox_p.h shared/qdesigner_tabwidget_p.h shared/qdesigner_taskmenu_p.h shared/qdesigner_toolbar_p.h shared/qdesigner_toolbox_p.h shared/qdesigner_utils_p.h shared/qdesigner_widget_p.h shared/qdesigner_widgetbox_p.h shared/qdesigner_widgetitem_p.h shared/qlayout_widget_p.h shared/qsimpleresource_p.h shared/qtresourceeditordialog_p.h shared/qtresourcemodel_p.h shared/qtresourceview_p.h shared/rcc_p.h shared/richtexteditor_p.h shared/selectsignaldialog_p.h shared/shared_enums_p.h shared/shared_global_p.h shared/shared_settings_p.h shared/sheet_delegate_p.h shared/signalslotdialog_p.h shared/spacer_widget_p.h shared/stylesheeteditor_p.h shared/textpropertyeditor_p.h shared/widgetdatabase_p.h shared/widgetfactory_p.h shared/zoomwidget_p.h uilib/formbuilderextra_p.h uilib/properties_p.h uilib/resourcebuilder_p.h uilib/textbuilder_p.h uilib/ui4_p.h SYNCQT.QPA_HEADER_FILES = SYNCQT.CLEAN_HEADER_FILES = components/qdesigner_components.h components/qdesigner_components_global.h extension/default_extensionfactory.h extension/extension.h extension/extension_global.h extension/qextensionmanager.h sdk/abstractactioneditor.h sdk/abstractdnditem.h sdk/abstractformeditor.h sdk/abstractformeditorplugin.h sdk/abstractformwindow.h sdk/abstractformwindowcursor.h sdk/abstractformwindowmanager.h sdk/abstractformwindowtool.h sdk/abstractintegration.h sdk/abstractlanguage.h sdk/abstractmetadatabase.h sdk/abstractnewformwidget.h sdk/abstractobjectinspector.h sdk/abstractoptionspage.h sdk/abstractpromotioninterface.h sdk/abstractpropertyeditor.h sdk/abstractresourcebrowser.h sdk/abstractsettings.h sdk/abstractwidgetbox.h sdk/abstractwidgetdatabase.h sdk/abstractwidgetfactory.h sdk/container.h sdk/dynamicpropertysheet.h sdk/extrainfo.h sdk/layoutdecoration.h sdk/membersheet.h sdk/propertysheet.h sdk/sdk_global.h sdk/taskmenu.h uilib/abstractformbuilder.h uilib/formbuilder.h uilib/uilib_global.h diff -Nru qttools-opensource-src-5.15.2/include/QtDesigner/qtdesignerversion.h qttools-opensource-src-5.15.3/include/QtDesigner/qtdesignerversion.h --- qttools-opensource-src-5.15.2/include/QtDesigner/qtdesignerversion.h 2020-11-12 17:24:09.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesigner/qtdesignerversion.h 2021-03-29 18:26:53.000000000 +0000 @@ -2,8 +2,8 @@ #ifndef QT_QTDESIGNER_VERSION_H #define QT_QTDESIGNER_VERSION_H -#define QTDESIGNER_VERSION_STR "5.15.2" +#define QTDESIGNER_VERSION_STR "5.15.3" -#define QTDESIGNER_VERSION 0x050F02 +#define QTDESIGNER_VERSION 0x050F03 #endif // QT_QTDESIGNER_VERSION_H diff -Nru qttools-opensource-src-5.15.2/include/QtDesignerComponents/5.15.2/QtDesignerComponents/private/lib_pch.h qttools-opensource-src-5.15.3/include/QtDesignerComponents/5.15.2/QtDesignerComponents/private/lib_pch.h --- qttools-opensource-src-5.15.2/include/QtDesignerComponents/5.15.2/QtDesignerComponents/private/lib_pch.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesignerComponents/5.15.2/QtDesignerComponents/private/lib_pch.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/components/lib/lib_pch.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesignerComponents/5.15.3/QtDesignerComponents/private/lib_pch.h qttools-opensource-src-5.15.3/include/QtDesignerComponents/5.15.3/QtDesignerComponents/private/lib_pch.h --- qttools-opensource-src-5.15.2/include/QtDesignerComponents/5.15.3/QtDesignerComponents/private/lib_pch.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesignerComponents/5.15.3/QtDesignerComponents/private/lib_pch.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/components/lib/lib_pch.h" diff -Nru qttools-opensource-src-5.15.2/include/QtDesignerComponents/qtdesignercomponentsversion.h qttools-opensource-src-5.15.3/include/QtDesignerComponents/qtdesignercomponentsversion.h --- qttools-opensource-src-5.15.2/include/QtDesignerComponents/qtdesignercomponentsversion.h 2020-11-12 17:24:09.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtDesignerComponents/qtdesignercomponentsversion.h 2021-03-29 18:26:53.000000000 +0000 @@ -2,8 +2,8 @@ #ifndef QT_QTDESIGNERCOMPONENTS_VERSION_H #define QT_QTDESIGNERCOMPONENTS_VERSION_H -#define QTDESIGNERCOMPONENTS_VERSION_STR "5.15.2" +#define QTDESIGNERCOMPONENTS_VERSION_STR "5.15.3" -#define QTDESIGNERCOMPONENTS_VERSION 0x050F02 +#define QTDESIGNERCOMPONENTS_VERSION 0x050F03 #endif // QT_QTDESIGNERCOMPONENTS_VERSION_H diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qfilternamedialog_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qfilternamedialog_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qfilternamedialog_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qfilternamedialog_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/assistant/help/qfilternamedialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpcollectionhandler_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpcollectionhandler_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpcollectionhandler_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpcollectionhandler_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/assistant/help/qhelpcollectionhandler_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpdbreader_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpdbreader_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpdbreader_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpdbreader_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/assistant/help/qhelpdbreader_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpengine_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpengine_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpengine_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpengine_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/assistant/help/qhelpengine_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpfiltersettings_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpfiltersettings_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpfiltersettings_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpfiltersettings_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/assistant/help/qhelpfiltersettings_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpsearchindexreader_default_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpsearchindexreader_default_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpsearchindexreader_default_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpsearchindexreader_default_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/assistant/help/qhelpsearchindexreader_default_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpsearchindexreader_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpsearchindexreader_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpsearchindexreader_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpsearchindexreader_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/assistant/help/qhelpsearchindexreader_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpsearchindexwriter_default_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpsearchindexwriter_default_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qhelpsearchindexwriter_default_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qhelpsearchindexwriter_default_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/assistant/help/qhelpsearchindexwriter_default_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qoptionswidget_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qoptionswidget_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.2/QtHelp/private/qoptionswidget_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.2/QtHelp/private/qoptionswidget_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/assistant/help/qoptionswidget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qfilternamedialog_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qfilternamedialog_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qfilternamedialog_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qfilternamedialog_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/assistant/help/qfilternamedialog_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpcollectionhandler_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpcollectionhandler_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpcollectionhandler_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpcollectionhandler_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/assistant/help/qhelpcollectionhandler_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpdbreader_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpdbreader_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpdbreader_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpdbreader_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/assistant/help/qhelpdbreader_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpengine_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpengine_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpengine_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpengine_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/assistant/help/qhelpengine_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpfiltersettings_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpfiltersettings_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpfiltersettings_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpfiltersettings_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/assistant/help/qhelpfiltersettings_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpsearchindexreader_default_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpsearchindexreader_default_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpsearchindexreader_default_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpsearchindexreader_default_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/assistant/help/qhelpsearchindexreader_default_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpsearchindexreader_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpsearchindexreader_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpsearchindexreader_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpsearchindexreader_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/assistant/help/qhelpsearchindexreader_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpsearchindexwriter_default_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpsearchindexwriter_default_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qhelpsearchindexwriter_default_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qhelpsearchindexwriter_default_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/assistant/help/qhelpsearchindexwriter_default_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qoptionswidget_p.h qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qoptionswidget_p.h --- qttools-opensource-src-5.15.2/include/QtHelp/5.15.3/QtHelp/private/qoptionswidget_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/5.15.3/QtHelp/private/qoptionswidget_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/assistant/help/qoptionswidget_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtHelp/qthelpversion.h qttools-opensource-src-5.15.3/include/QtHelp/qthelpversion.h --- qttools-opensource-src-5.15.2/include/QtHelp/qthelpversion.h 2020-11-12 17:24:09.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtHelp/qthelpversion.h 2021-03-29 18:26:53.000000000 +0000 @@ -2,8 +2,8 @@ #ifndef QT_QTHELP_VERSION_H #define QT_QTHELP_VERSION_H -#define QTHELP_VERSION_STR "5.15.2" +#define QTHELP_VERSION_STR "5.15.3" -#define QTHELP_VERSION 0x050F02 +#define QTHELP_VERSION 0x050F03 #endif // QT_QTHELP_VERSION_H diff -Nru qttools-opensource-src-5.15.2/include/QtUiPlugin/qtuipluginversion.h qttools-opensource-src-5.15.3/include/QtUiPlugin/qtuipluginversion.h --- qttools-opensource-src-5.15.2/include/QtUiPlugin/qtuipluginversion.h 2020-11-12 17:24:09.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtUiPlugin/qtuipluginversion.h 2021-03-29 18:26:53.000000000 +0000 @@ -2,8 +2,8 @@ #ifndef QT_QTUIPLUGIN_VERSION_H #define QT_QTUIPLUGIN_VERSION_H -#define QTUIPLUGIN_VERSION_STR "5.15.2" +#define QTUIPLUGIN_VERSION_STR "5.15.3" -#define QTUIPLUGIN_VERSION 0x050F02 +#define QTUIPLUGIN_VERSION 0x050F03 #endif // QT_QTUIPLUGIN_VERSION_H diff -Nru qttools-opensource-src-5.15.2/include/QtUiTools/5.15.2/QtUiTools/private/quiloader_p.h qttools-opensource-src-5.15.3/include/QtUiTools/5.15.2/QtUiTools/private/quiloader_p.h --- qttools-opensource-src-5.15.2/include/QtUiTools/5.15.2/QtUiTools/private/quiloader_p.h 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtUiTools/5.15.2/QtUiTools/private/quiloader_p.h 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -#include "../../../../../src/designer/src/uitools/quiloader_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtUiTools/5.15.3/QtUiTools/private/quiloader_p.h qttools-opensource-src-5.15.3/include/QtUiTools/5.15.3/QtUiTools/private/quiloader_p.h --- qttools-opensource-src-5.15.2/include/QtUiTools/5.15.3/QtUiTools/private/quiloader_p.h 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtUiTools/5.15.3/QtUiTools/private/quiloader_p.h 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1 @@ +#include "../../../../../src/designer/src/uitools/quiloader_p.h" diff -Nru qttools-opensource-src-5.15.2/include/QtUiTools/qtuitoolsversion.h qttools-opensource-src-5.15.3/include/QtUiTools/qtuitoolsversion.h --- qttools-opensource-src-5.15.2/include/QtUiTools/qtuitoolsversion.h 2020-11-12 17:24:09.000000000 +0000 +++ qttools-opensource-src-5.15.3/include/QtUiTools/qtuitoolsversion.h 2021-03-29 18:26:53.000000000 +0000 @@ -2,8 +2,8 @@ #ifndef QT_QTUITOOLS_VERSION_H #define QT_QTUITOOLS_VERSION_H -#define QTUITOOLS_VERSION_STR "5.15.2" +#define QTUITOOLS_VERSION_STR "5.15.3" -#define QTUITOOLS_VERSION 0x050F02 +#define QTUITOOLS_VERSION 0x050F03 #endif // QT_QTUITOOLS_VERSION_H diff -Nru qttools-opensource-src-5.15.2/.qmake.conf qttools-opensource-src-5.15.3/.qmake.conf --- qttools-opensource-src-5.15.2/.qmake.conf 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/.qmake.conf 2021-03-18 10:36:56.000000000 +0000 @@ -2,4 +2,4 @@ DEFINES += QT_NO_JAVA_STYLE_ITERATORS QT_NO_LINKED_LIST -MODULE_VERSION = 5.15.2 +MODULE_VERSION = 5.15.3 diff -Nru qttools-opensource-src-5.15.2/.QT-ENTERPRISE-LICENSE-AGREEMENT qttools-opensource-src-5.15.3/.QT-ENTERPRISE-LICENSE-AGREEMENT --- qttools-opensource-src-5.15.2/.QT-ENTERPRISE-LICENSE-AGREEMENT 2020-11-12 17:24:10.826264000 +0000 +++ qttools-opensource-src-5.15.3/.QT-ENTERPRISE-LICENSE-AGREEMENT 2021-03-29 18:26:54.998194000 +0000 @@ -1,5 +1,5 @@ QT LICENSE AGREEMENT -Agreement version 4.2.3 +Agreement version 4.3 This Qt License Agreement ("Agreement") is a legal agreement for the licensing of Licensed Software (as defined below) between The Qt Company (as defined @@ -159,14 +159,8 @@ "Party" or "Parties" shall mean Licensee and/or The Qt Company. -"Permitted Software" shall mean any (i) open source software (excluding Open -Source Qt) that is a) generally available for public in source code form -without additional cost under any of the licenses approved by Open Source -Initiative as listed on https://opensource.org/licenses; and (b) is in no -way, directly or indirectly, developed by or for or otherwise related to or -in the interest of the Licensee or its Affiliates, or (ii) software The Qt -Company has made available via its Qt Marketplace online distribution -channel. +"Permitted Combination" shall have the meaning as set forth in Section +3.4(viii). "Pre-Release Code" shall have the meaning as set forth in Section 4. @@ -308,10 +302,10 @@ Upon expiry of the initially agreed License Term, the respective License Terms shall be automatically extended to one or more Renewal Term(s), unless and -until either Party notifies the other Party in writing that it does not wish -to continue the License Term, such notification to be provided to the other -Party no less than thirty (30) days before expiry of the respective License -Term. +until either Party notifies the other Party in writing, or any other method +acceptable to The Qt Company, that it does not wish to continue the License +Term, such notification to be provided to the other Party no less than thirty +(30) days before expiry of the respective License Term. Unless otherwise agreed between the Parties, Renewal Term shall be of equal length with the initial License Term. @@ -323,8 +317,10 @@ Any price or other term specified for a Renewal Term shall be valid only for the specified time. -The Qt Company may request the Licensee to place a purchase order corresponding -to a quote by The Qt Company for the relevant Renewal Term. +The Qt Company may either request the Licensee to place a purchase order +corresponding to a quote by The Qt Company, or uses Licensees stored Credit +Card information in the QtAccount to automatically charge the Licensee for the +relevant Renewal Term. In the event Licensee does not prevent auto-renewal pursuant the above, but a Renewal Term is nevertheless not duly ordered within 30 days from the date of @@ -750,11 +746,13 @@ Notwithstanding the above, in the event the Agreement expires or is terminated: (i) as a result of The Qt Company choosing not to renew the Development - License(s) as set forth in Section 3.1, then all valid licenses - possessed by the Licensee at such date shall be extended to be valid - in perpetuity under the terms of this Agreement and Licensee is - entitled to purchase additional licenses as set forth in - Section 10.2; or + License(s) as set forth in Section 3.1, and where such decision of + non-renewal is not due to any ongoing breach or alleged breach (as + reasonably determined by The Qt Company) by Licensee of the terms of this + Agreement or any applicable license terms of Open Source Qt, then all valid + licenses possessed by the Licensee at such date shall be extended to be + valid in perpetuity under the terms of this Agreement and Licensee is + entitled to purchase additional licenses as set forth in Section 10.2; or (ii) for reason other than by The Qt Company pursuant to item (i) above or pursuant to Section 12.2, then the Licensee is entitled, for a period of six (6) months after the effective date of termination, @@ -950,7 +948,8 @@ The modules and/or tools that are included in the respective product - Qt for Application Development (QtAD), Qt for Device Creation (QtDC), Qt for MCUs (QtMCU), Qt 3D Studio (Qt3DS) and Qt Design Studio (QtDS) - are -marked with 'X' in the below table. +marked with 'X' in the below table. The modules and tools are ported to Qt 6 +in stages and are subject to availability. Parts of the product that are permitted for distribution in object-code form only ("Redistributables") are marked with 'R' in the below table. @@ -968,6 +967,8 @@ +-----------------------------------------------------------------------+ | Qt Network | X, R | X, R | | | | +-----------------------------------------------------------------------+ +| Qt PDF | X, R | X, R | | | | ++-----------------------------------------------------------------------+ | Qt QML | X, R | X, R | | | | +-----------------------------------------------------------------------+ | Qt Quick | X, R | X, R | | | | @@ -1066,7 +1067,7 @@ +-----------------------------------------------------------------------+ | Qt Charts | X, R | X, R | | | | +-----------------------------------------------------------------------+ -| Qt Data visualization | X, R | X, R | | | | +| Qt Data Visualization | X, R | X, R | | | | +-----------------------------------------------------------------------+ | Qt Virtual Keyboard | X, R | X, R | | | | +-----------------------------------------------------------------------+ @@ -1086,16 +1087,16 @@ +-----------------------------------------------------------------------+ | Qt Designer (Qt Widget Designer) | X | X | | | | +-----------------------------------------------------------------------+ -| Qt Quick Designer (Qt Creator | X | X | X | | | +| Qt Quick Designer (Qt Creator | X, R | X, R | X, R | | | | plugin) | | | | | | +-----------------------------------------------------------------------+ -| Qt Linguist | X | X | X | | | +| Qt Linguist | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ -| Qt Assistant | X | X | X | | | +| Qt Assistant | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ -| Lupdate | X | X | X | | | +| Lupdate | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ -| Lrelease | X | X | X | | | +| Lrelease | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ | Qmake | X | X | | | | +-----------------------------------------------------------------------+ @@ -1142,7 +1143,8 @@ invoice. The Modules and/or Tools of the Licensed Software that are included with each -Add-On Product respectively are marked with 'X' in the below table. +Add-On Product respectively are marked with 'X' in the below table. The modules +are ported to Qt 6 in stages and are subject to availability. Parts of the respective Add-On Product that are permitted for distribution in object-code form only ("Redistributables") are marked with 'R' in the below @@ -1311,4 +1313,3 @@ Except for the modifications specified above, this Appendix carries no change to the terms of the Agreement which shall remain in full force. - diff -Nru qttools-opensource-src-5.15.2/.QT-FOR-APPLICATION-DEVELOPMENT-LICENSE-AGREEMENT qttools-opensource-src-5.15.3/.QT-FOR-APPLICATION-DEVELOPMENT-LICENSE-AGREEMENT --- qttools-opensource-src-5.15.2/.QT-FOR-APPLICATION-DEVELOPMENT-LICENSE-AGREEMENT 2020-11-12 17:24:10.826264000 +0000 +++ qttools-opensource-src-5.15.3/.QT-FOR-APPLICATION-DEVELOPMENT-LICENSE-AGREEMENT 2021-03-29 18:26:54.998194000 +0000 @@ -1,5 +1,5 @@ QT LICENSE AGREEMENT -Agreement version 4.2.3 +Agreement version 4.3 This Qt License Agreement ("Agreement") is a legal agreement for the licensing of Licensed Software (as defined below) between The Qt Company (as defined @@ -159,14 +159,8 @@ "Party" or "Parties" shall mean Licensee and/or The Qt Company. -"Permitted Software" shall mean any (i) open source software (excluding Open -Source Qt) that is a) generally available for public in source code form -without additional cost under any of the licenses approved by Open Source -Initiative as listed on https://opensource.org/licenses; and (b) is in no -way, directly or indirectly, developed by or for or otherwise related to or -in the interest of the Licensee or its Affiliates, or (ii) software The Qt -Company has made available via its Qt Marketplace online distribution -channel. +"Permitted Combination" shall have the meaning as set forth in Section +3.4(viii). "Pre-Release Code" shall have the meaning as set forth in Section 4. @@ -308,10 +302,10 @@ Upon expiry of the initially agreed License Term, the respective License Terms shall be automatically extended to one or more Renewal Term(s), unless and -until either Party notifies the other Party in writing that it does not wish -to continue the License Term, such notification to be provided to the other -Party no less than thirty (30) days before expiry of the respective License -Term. +until either Party notifies the other Party in writing, or any other method +acceptable to The Qt Company, that it does not wish to continue the License +Term, such notification to be provided to the other Party no less than thirty +(30) days before expiry of the respective License Term. Unless otherwise agreed between the Parties, Renewal Term shall be of equal length with the initial License Term. @@ -323,8 +317,10 @@ Any price or other term specified for a Renewal Term shall be valid only for the specified time. -The Qt Company may request the Licensee to place a purchase order corresponding -to a quote by The Qt Company for the relevant Renewal Term. +The Qt Company may either request the Licensee to place a purchase order +corresponding to a quote by The Qt Company, or uses Licensees stored Credit +Card information in the QtAccount to automatically charge the Licensee for the +relevant Renewal Term. In the event Licensee does not prevent auto-renewal pursuant the above, but a Renewal Term is nevertheless not duly ordered within 30 days from the date of @@ -750,11 +746,13 @@ Notwithstanding the above, in the event the Agreement expires or is terminated: (i) as a result of The Qt Company choosing not to renew the Development - License(s) as set forth in Section 3.1, then all valid licenses - possessed by the Licensee at such date shall be extended to be valid - in perpetuity under the terms of this Agreement and Licensee is - entitled to purchase additional licenses as set forth in - Section 10.2; or + License(s) as set forth in Section 3.1, and where such decision of + non-renewal is not due to any ongoing breach or alleged breach (as + reasonably determined by The Qt Company) by Licensee of the terms of this + Agreement or any applicable license terms of Open Source Qt, then all valid + licenses possessed by the Licensee at such date shall be extended to be + valid in perpetuity under the terms of this Agreement and Licensee is + entitled to purchase additional licenses as set forth in Section 10.2; or (ii) for reason other than by The Qt Company pursuant to item (i) above or pursuant to Section 12.2, then the Licensee is entitled, for a period of six (6) months after the effective date of termination, @@ -950,7 +948,8 @@ The modules and/or tools that are included in the respective product - Qt for Application Development (QtAD), Qt for Device Creation (QtDC), Qt for MCUs (QtMCU), Qt 3D Studio (Qt3DS) and Qt Design Studio (QtDS) - are -marked with 'X' in the below table. +marked with 'X' in the below table. The modules and tools are ported to Qt 6 +in stages and are subject to availability. Parts of the product that are permitted for distribution in object-code form only ("Redistributables") are marked with 'R' in the below table. @@ -968,6 +967,8 @@ +-----------------------------------------------------------------------+ | Qt Network | X, R | X, R | | | | +-----------------------------------------------------------------------+ +| Qt PDF | X, R | X, R | | | | ++-----------------------------------------------------------------------+ | Qt QML | X, R | X, R | | | | +-----------------------------------------------------------------------+ | Qt Quick | X, R | X, R | | | | @@ -1066,7 +1067,7 @@ +-----------------------------------------------------------------------+ | Qt Charts | X, R | X, R | | | | +-----------------------------------------------------------------------+ -| Qt Data visualization | X, R | X, R | | | | +| Qt Data Visualization | X, R | X, R | | | | +-----------------------------------------------------------------------+ | Qt Virtual Keyboard | X, R | X, R | | | | +-----------------------------------------------------------------------+ @@ -1086,16 +1087,16 @@ +-----------------------------------------------------------------------+ | Qt Designer (Qt Widget Designer) | X | X | | | | +-----------------------------------------------------------------------+ -| Qt Quick Designer (Qt Creator | X | X | X | | | +| Qt Quick Designer (Qt Creator | X, R | X, R | X, R | | | | plugin) | | | | | | +-----------------------------------------------------------------------+ -| Qt Linguist | X | X | X | | | +| Qt Linguist | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ -| Qt Assistant | X | X | X | | | +| Qt Assistant | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ -| Lupdate | X | X | X | | | +| Lupdate | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ -| Lrelease | X | X | X | | | +| Lrelease | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ | Qmake | X | X | | | | +-----------------------------------------------------------------------+ @@ -1142,7 +1143,8 @@ invoice. The Modules and/or Tools of the Licensed Software that are included with each -Add-On Product respectively are marked with 'X' in the below table. +Add-On Product respectively are marked with 'X' in the below table. The modules +are ported to Qt 6 in stages and are subject to availability. Parts of the respective Add-On Product that are permitted for distribution in object-code form only ("Redistributables") are marked with 'R' in the below @@ -1311,4 +1313,3 @@ Except for the modifications specified above, this Appendix carries no change to the terms of the Agreement which shall remain in full force. - diff -Nru qttools-opensource-src-5.15.2/.QT-FOR-AUTOMATION-LICENSE-AGREEMENT qttools-opensource-src-5.15.3/.QT-FOR-AUTOMATION-LICENSE-AGREEMENT --- qttools-opensource-src-5.15.2/.QT-FOR-AUTOMATION-LICENSE-AGREEMENT 2020-11-12 17:24:10.822264000 +0000 +++ qttools-opensource-src-5.15.3/.QT-FOR-AUTOMATION-LICENSE-AGREEMENT 2021-03-29 18:26:54.994194000 +0000 @@ -1,5 +1,5 @@ QT LICENSE AGREEMENT -Agreement version 4.2.3 +Agreement version 4.3 This Qt License Agreement ("Agreement") is a legal agreement for the licensing of Licensed Software (as defined below) between The Qt Company (as defined @@ -159,14 +159,8 @@ "Party" or "Parties" shall mean Licensee and/or The Qt Company. -"Permitted Software" shall mean any (i) open source software (excluding Open -Source Qt) that is a) generally available for public in source code form -without additional cost under any of the licenses approved by Open Source -Initiative as listed on https://opensource.org/licenses; and (b) is in no -way, directly or indirectly, developed by or for or otherwise related to or -in the interest of the Licensee or its Affiliates, or (ii) software The Qt -Company has made available via its Qt Marketplace online distribution -channel. +"Permitted Combination" shall have the meaning as set forth in Section +3.4(viii). "Pre-Release Code" shall have the meaning as set forth in Section 4. @@ -308,10 +302,10 @@ Upon expiry of the initially agreed License Term, the respective License Terms shall be automatically extended to one or more Renewal Term(s), unless and -until either Party notifies the other Party in writing that it does not wish -to continue the License Term, such notification to be provided to the other -Party no less than thirty (30) days before expiry of the respective License -Term. +until either Party notifies the other Party in writing, or any other method +acceptable to The Qt Company, that it does not wish to continue the License +Term, such notification to be provided to the other Party no less than thirty +(30) days before expiry of the respective License Term. Unless otherwise agreed between the Parties, Renewal Term shall be of equal length with the initial License Term. @@ -323,8 +317,10 @@ Any price or other term specified for a Renewal Term shall be valid only for the specified time. -The Qt Company may request the Licensee to place a purchase order corresponding -to a quote by The Qt Company for the relevant Renewal Term. +The Qt Company may either request the Licensee to place a purchase order +corresponding to a quote by The Qt Company, or uses Licensees stored Credit +Card information in the QtAccount to automatically charge the Licensee for the +relevant Renewal Term. In the event Licensee does not prevent auto-renewal pursuant the above, but a Renewal Term is nevertheless not duly ordered within 30 days from the date of @@ -750,11 +746,13 @@ Notwithstanding the above, in the event the Agreement expires or is terminated: (i) as a result of The Qt Company choosing not to renew the Development - License(s) as set forth in Section 3.1, then all valid licenses - possessed by the Licensee at such date shall be extended to be valid - in perpetuity under the terms of this Agreement and Licensee is - entitled to purchase additional licenses as set forth in - Section 10.2; or + License(s) as set forth in Section 3.1, and where such decision of + non-renewal is not due to any ongoing breach or alleged breach (as + reasonably determined by The Qt Company) by Licensee of the terms of this + Agreement or any applicable license terms of Open Source Qt, then all valid + licenses possessed by the Licensee at such date shall be extended to be + valid in perpetuity under the terms of this Agreement and Licensee is + entitled to purchase additional licenses as set forth in Section 10.2; or (ii) for reason other than by The Qt Company pursuant to item (i) above or pursuant to Section 12.2, then the Licensee is entitled, for a period of six (6) months after the effective date of termination, @@ -950,7 +948,8 @@ The modules and/or tools that are included in the respective product - Qt for Application Development (QtAD), Qt for Device Creation (QtDC), Qt for MCUs (QtMCU), Qt 3D Studio (Qt3DS) and Qt Design Studio (QtDS) - are -marked with 'X' in the below table. +marked with 'X' in the below table. The modules and tools are ported to Qt 6 +in stages and are subject to availability. Parts of the product that are permitted for distribution in object-code form only ("Redistributables") are marked with 'R' in the below table. @@ -968,6 +967,8 @@ +-----------------------------------------------------------------------+ | Qt Network | X, R | X, R | | | | +-----------------------------------------------------------------------+ +| Qt PDF | X, R | X, R | | | | ++-----------------------------------------------------------------------+ | Qt QML | X, R | X, R | | | | +-----------------------------------------------------------------------+ | Qt Quick | X, R | X, R | | | | @@ -1066,7 +1067,7 @@ +-----------------------------------------------------------------------+ | Qt Charts | X, R | X, R | | | | +-----------------------------------------------------------------------+ -| Qt Data visualization | X, R | X, R | | | | +| Qt Data Visualization | X, R | X, R | | | | +-----------------------------------------------------------------------+ | Qt Virtual Keyboard | X, R | X, R | | | | +-----------------------------------------------------------------------+ @@ -1086,16 +1087,16 @@ +-----------------------------------------------------------------------+ | Qt Designer (Qt Widget Designer) | X | X | | | | +-----------------------------------------------------------------------+ -| Qt Quick Designer (Qt Creator | X | X | X | | | +| Qt Quick Designer (Qt Creator | X, R | X, R | X, R | | | | plugin) | | | | | | +-----------------------------------------------------------------------+ -| Qt Linguist | X | X | X | | | +| Qt Linguist | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ -| Qt Assistant | X | X | X | | | +| Qt Assistant | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ -| Lupdate | X | X | X | | | +| Lupdate | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ -| Lrelease | X | X | X | | | +| Lrelease | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ | Qmake | X | X | | | | +-----------------------------------------------------------------------+ @@ -1142,7 +1143,8 @@ invoice. The Modules and/or Tools of the Licensed Software that are included with each -Add-On Product respectively are marked with 'X' in the below table. +Add-On Product respectively are marked with 'X' in the below table. The modules +are ported to Qt 6 in stages and are subject to availability. Parts of the respective Add-On Product that are permitted for distribution in object-code form only ("Redistributables") are marked with 'R' in the below @@ -1311,4 +1313,3 @@ Except for the modifications specified above, this Appendix carries no change to the terms of the Agreement which shall remain in full force. - diff -Nru qttools-opensource-src-5.15.2/.QT-FOR-DEVICE-CREATION-LICENSE-AGREEMENT qttools-opensource-src-5.15.3/.QT-FOR-DEVICE-CREATION-LICENSE-AGREEMENT --- qttools-opensource-src-5.15.2/.QT-FOR-DEVICE-CREATION-LICENSE-AGREEMENT 2020-11-12 17:24:10.826264000 +0000 +++ qttools-opensource-src-5.15.3/.QT-FOR-DEVICE-CREATION-LICENSE-AGREEMENT 2021-03-29 18:26:54.998194000 +0000 @@ -1,5 +1,5 @@ QT LICENSE AGREEMENT -Agreement version 4.2.3 +Agreement version 4.3 This Qt License Agreement ("Agreement") is a legal agreement for the licensing of Licensed Software (as defined below) between The Qt Company (as defined @@ -159,14 +159,8 @@ "Party" or "Parties" shall mean Licensee and/or The Qt Company. -"Permitted Software" shall mean any (i) open source software (excluding Open -Source Qt) that is a) generally available for public in source code form -without additional cost under any of the licenses approved by Open Source -Initiative as listed on https://opensource.org/licenses; and (b) is in no -way, directly or indirectly, developed by or for or otherwise related to or -in the interest of the Licensee or its Affiliates, or (ii) software The Qt -Company has made available via its Qt Marketplace online distribution -channel. +"Permitted Combination" shall have the meaning as set forth in Section +3.4(viii). "Pre-Release Code" shall have the meaning as set forth in Section 4. @@ -308,10 +302,10 @@ Upon expiry of the initially agreed License Term, the respective License Terms shall be automatically extended to one or more Renewal Term(s), unless and -until either Party notifies the other Party in writing that it does not wish -to continue the License Term, such notification to be provided to the other -Party no less than thirty (30) days before expiry of the respective License -Term. +until either Party notifies the other Party in writing, or any other method +acceptable to The Qt Company, that it does not wish to continue the License +Term, such notification to be provided to the other Party no less than thirty +(30) days before expiry of the respective License Term. Unless otherwise agreed between the Parties, Renewal Term shall be of equal length with the initial License Term. @@ -323,8 +317,10 @@ Any price or other term specified for a Renewal Term shall be valid only for the specified time. -The Qt Company may request the Licensee to place a purchase order corresponding -to a quote by The Qt Company for the relevant Renewal Term. +The Qt Company may either request the Licensee to place a purchase order +corresponding to a quote by The Qt Company, or uses Licensees stored Credit +Card information in the QtAccount to automatically charge the Licensee for the +relevant Renewal Term. In the event Licensee does not prevent auto-renewal pursuant the above, but a Renewal Term is nevertheless not duly ordered within 30 days from the date of @@ -750,11 +746,13 @@ Notwithstanding the above, in the event the Agreement expires or is terminated: (i) as a result of The Qt Company choosing not to renew the Development - License(s) as set forth in Section 3.1, then all valid licenses - possessed by the Licensee at such date shall be extended to be valid - in perpetuity under the terms of this Agreement and Licensee is - entitled to purchase additional licenses as set forth in - Section 10.2; or + License(s) as set forth in Section 3.1, and where such decision of + non-renewal is not due to any ongoing breach or alleged breach (as + reasonably determined by The Qt Company) by Licensee of the terms of this + Agreement or any applicable license terms of Open Source Qt, then all valid + licenses possessed by the Licensee at such date shall be extended to be + valid in perpetuity under the terms of this Agreement and Licensee is + entitled to purchase additional licenses as set forth in Section 10.2; or (ii) for reason other than by The Qt Company pursuant to item (i) above or pursuant to Section 12.2, then the Licensee is entitled, for a period of six (6) months after the effective date of termination, @@ -950,7 +948,8 @@ The modules and/or tools that are included in the respective product - Qt for Application Development (QtAD), Qt for Device Creation (QtDC), Qt for MCUs (QtMCU), Qt 3D Studio (Qt3DS) and Qt Design Studio (QtDS) - are -marked with 'X' in the below table. +marked with 'X' in the below table. The modules and tools are ported to Qt 6 +in stages and are subject to availability. Parts of the product that are permitted for distribution in object-code form only ("Redistributables") are marked with 'R' in the below table. @@ -968,6 +967,8 @@ +-----------------------------------------------------------------------+ | Qt Network | X, R | X, R | | | | +-----------------------------------------------------------------------+ +| Qt PDF | X, R | X, R | | | | ++-----------------------------------------------------------------------+ | Qt QML | X, R | X, R | | | | +-----------------------------------------------------------------------+ | Qt Quick | X, R | X, R | | | | @@ -1066,7 +1067,7 @@ +-----------------------------------------------------------------------+ | Qt Charts | X, R | X, R | | | | +-----------------------------------------------------------------------+ -| Qt Data visualization | X, R | X, R | | | | +| Qt Data Visualization | X, R | X, R | | | | +-----------------------------------------------------------------------+ | Qt Virtual Keyboard | X, R | X, R | | | | +-----------------------------------------------------------------------+ @@ -1086,16 +1087,16 @@ +-----------------------------------------------------------------------+ | Qt Designer (Qt Widget Designer) | X | X | | | | +-----------------------------------------------------------------------+ -| Qt Quick Designer (Qt Creator | X | X | X | | | +| Qt Quick Designer (Qt Creator | X, R | X, R | X, R | | | | plugin) | | | | | | +-----------------------------------------------------------------------+ -| Qt Linguist | X | X | X | | | +| Qt Linguist | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ -| Qt Assistant | X | X | X | | | +| Qt Assistant | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ -| Lupdate | X | X | X | | | +| Lupdate | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ -| Lrelease | X | X | X | | | +| Lrelease | X, R | X, R | X, R | | | +-----------------------------------------------------------------------+ | Qmake | X | X | | | | +-----------------------------------------------------------------------+ @@ -1142,7 +1143,8 @@ invoice. The Modules and/or Tools of the Licensed Software that are included with each -Add-On Product respectively are marked with 'X' in the below table. +Add-On Product respectively are marked with 'X' in the below table. The modules +are ported to Qt 6 in stages and are subject to availability. Parts of the respective Add-On Product that are permitted for distribution in object-code form only ("Redistributables") are marked with 'R' in the below @@ -1311,4 +1313,3 @@ Except for the modifications specified above, this Appendix carries no change to the terms of the Agreement which shall remain in full force. - diff -Nru qttools-opensource-src-5.15.2/src/assistant/assistant/mainwindow.cpp qttools-opensource-src-5.15.3/src/assistant/assistant/mainwindow.cpp --- qttools-opensource-src-5.15.2/src/assistant/assistant/mainwindow.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/assistant/assistant/mainwindow.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -912,7 +912,7 @@ "

Version %2

" "

Browser: %3

" "

Copyright (C) %4 The Qt Company Ltd.

") - .arg(tr("Qt Assistant"), QLatin1String(QT_VERSION_STR), browser, QStringLiteral("2020")), + .arg(tr("Qt Assistant"), QLatin1String(QT_VERSION_STR), browser, QStringLiteral("2021")), resources); QLatin1String path(":/qt-project.org/assistant/images/assistant-128.png"); aboutDia.setPixmap(QString(path)); diff -Nru qttools-opensource-src-5.15.2/src/assistant/help/qhelpcollectionhandler.cpp qttools-opensource-src-5.15.3/src/assistant/help/qhelpcollectionhandler.cpp --- qttools-opensource-src-5.15.2/src/assistant/help/qhelpcollectionhandler.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/assistant/help/qhelpcollectionhandler.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -2197,7 +2197,15 @@ m_query->addBindValue(fileName); const QFileInfo fi(absoluteDocPath(fileName)); m_query->addBindValue(fi.size()); - m_query->addBindValue(fi.lastModified().toString(Qt::ISODate)); + QDateTime lastModified = fi.lastModified(); + if (qEnvironmentVariableIsSet("SOURCE_DATE_EPOCH")) { + const QString sourceDateEpochStr = qEnvironmentVariable("SOURCE_DATE_EPOCH"); + bool ok; + const qlonglong sourceDateEpoch = sourceDateEpochStr.toLongLong(&ok); + if (ok && sourceDateEpoch < lastModified.toSecsSinceEpoch()) + lastModified.setSecsSinceEpoch(sourceDateEpoch); + } + m_query->addBindValue(lastModified.toString(Qt::ISODate)); if (!m_query->exec()) return false; diff -Nru qttools-opensource-src-5.15.2/src/designer/src/designer/versiondialog.cpp qttools-opensource-src-5.15.3/src/designer/src/designer/versiondialog.cpp --- qttools-opensource-src-5.15.2/src/designer/src/designer/versiondialog.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/designer/src/designer/versiondialog.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -160,7 +160,7 @@ lbl->setText(tr("%1" "
Copyright (C) %2 The Qt Company Ltd." - ).arg(version, QStringLiteral("2020"))); + ).arg(version, QStringLiteral("2021"))); lbl->setWordWrap(true); lbl->setOpenExternalLinks(true); diff -Nru qttools-opensource-src-5.15.2/src/linguist/linguist/mainwindow.cpp qttools-opensource-src-5.15.3/src/linguist/linguist/mainwindow.cpp --- qttools-opensource-src-5.15.2/src/linguist/linguist/mainwindow.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/linguist/linguist/mainwindow.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -1363,7 +1363,7 @@ const QString description = tr("Qt Linguist is a tool for adding translations to Qt applications."); const QString copyright - = tr("Copyright (C) %1 The Qt Company Ltd.").arg(QStringLiteral("2020")); + = tr("Copyright (C) %1 The Qt Company Ltd.").arg(QStringLiteral("2021")); box.setText(QStringLiteral("

%1

" "

%2

" "

%3

").arg(version, description, copyright)); diff -Nru qttools-opensource-src-5.15.2/src/linguist/Qt5LinguistToolsMacros.cmake qttools-opensource-src-5.15.3/src/linguist/Qt5LinguistToolsMacros.cmake --- qttools-opensource-src-5.15.2/src/linguist/Qt5LinguistToolsMacros.cmake 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/linguist/Qt5LinguistToolsMacros.cmake 2021-03-18 10:36:56.000000000 +0000 @@ -41,6 +41,17 @@ set(_lupdate_files ${_LUPDATE_UNPARSED_ARGUMENTS}) set(_lupdate_options ${_LUPDATE_OPTIONS}) + list(FIND _lupdate_options "-extensions" _extensions_index) + if(_extensions_index GREATER -1) + math(EXPR _extensions_index "${_extensions_index} + 1") + list(GET _lupdate_options ${_extensions_index} _extensions_list) + string(REPLACE "," ";" _extensions_list "${_extensions_list}") + list(TRANSFORM _extensions_list STRIP) + list(TRANSFORM _extensions_list REPLACE "^\." "") + list(TRANSFORM _extensions_list PREPEND "*.") + else() + set(_extensions_list "*.java;*.jui;*.ui;*.c;*.c++;*.cc;*.cpp;*.cxx;*.ch;*.h;*.h++;*.hh;*.hpp;*.hxx;*.js;*.qs;*.qml;*.qrc") + endif() set(_my_sources) set(_my_tsfiles) foreach(_file ${_lupdate_files}) @@ -59,8 +70,16 @@ get_filename_component(_ts_name ${_ts_file} NAME) set(_ts_lst_file "${CMAKE_CURRENT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/${_ts_name}_lst_file") set(_lst_file_srcs) + set(_dependencies) foreach(_lst_file_src ${_my_sources}) set(_lst_file_srcs "${_lst_file_src}\n${_lst_file_srcs}") + if(IS_DIRECTORY ${_lst_file_src}) + list(TRANSFORM _extensions_list PREPEND "${_lst_file_src}/" OUTPUT_VARIABLE _directory_glob) + file(GLOB_RECURSE _directory_contents CONFIGURE_DEPENDS ${_directory_glob}) + list(APPEND _dependencies ${_directory_contents}) + else() + list(APPEND _dependencies "${_lst_file_src}") + endif() endforeach() get_directory_property(_inc_DIRS INCLUDE_DIRECTORIES) @@ -74,8 +93,8 @@ add_custom_command(OUTPUT ${_ts_file} COMMAND ${Qt5_LUPDATE_EXECUTABLE} ARGS ${_lupdate_options} "@${_ts_lst_file}" -ts ${_ts_file} - DEPENDS ${_my_sources} - BYPRODUCTS ${_ts_lst_file} VERBATIM) + DEPENDS ${_dependencies} + VERBATIM) endforeach() qt5_add_translation(${_qm_files} ${_my_tsfiles}) set(${_qm_files} ${${_qm_files}} PARENT_SCOPE) diff -Nru qttools-opensource-src-5.15.2/src/qdbus/qdbusviewer/mainwindow.cpp qttools-opensource-src-5.15.3/src/qdbus/qdbusviewer/mainwindow.cpp --- qttools-opensource-src-5.15.2/src/qdbus/qdbusviewer/mainwindow.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/qdbus/qdbusviewer/mainwindow.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -90,7 +90,7 @@ "

%1

" "

Version %2

" "

Copyright (C) %3 The Qt Company Ltd.

") - .arg(tr("D-Bus Viewer"), QLatin1String(QT_VERSION_STR), QStringLiteral("2020"))); + .arg(tr("D-Bus Viewer"), QLatin1String(QT_VERSION_STR), QStringLiteral("2021"))); box.setWindowTitle(tr("D-Bus Viewer")); box.exec(); } diff -Nru qttools-opensource-src-5.15.2/src/qdbus/qdbusviewer/qdbusviewer.pro qttools-opensource-src-5.15.3/src/qdbus/qdbusviewer/qdbusviewer.pro --- qttools-opensource-src-5.15.2/src/qdbus/qdbusviewer/qdbusviewer.pro 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/qdbus/qdbusviewer/qdbusviewer.pro 2021-03-18 10:36:56.000000000 +0000 @@ -23,7 +23,7 @@ } win32 { - RC_FILE = qdbusviewer.rc + RC_ICONS = images/qdbusviewer.ico } load(qt_app) diff -Nru qttools-opensource-src-5.15.2/src/qdbus/qdbusviewer/qdbusviewer.rc qttools-opensource-src-5.15.3/src/qdbus/qdbusviewer/qdbusviewer.rc --- qttools-opensource-src-5.15.2/src/qdbus/qdbusviewer/qdbusviewer.rc 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/qdbus/qdbusviewer/qdbusviewer.rc 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -IDI_ICON1 ICON DISCARDABLE "images/qdbusviewer.ico" diff -Nru qttools-opensource-src-5.15.2/src/qdoc/doc/qdoc-manual-topiccmds.qdoc qttools-opensource-src-5.15.3/src/qdoc/doc/qdoc-manual-topiccmds.qdoc --- qttools-opensource-src-5.15.2/src/qdoc/doc/qdoc-manual-topiccmds.qdoc 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/qdoc/doc/qdoc-manual-topiccmds.qdoc 2021-03-18 10:36:56.000000000 +0000 @@ -930,22 +930,24 @@ \list + \li api - This is the type of page used for C++ class references and + QML type references. You should never use this one for the pages + you write, because this one is reserved for QDoc. + + \li attribution - A page describing (code) attributions. + + \li example - A page that describes a working example. + \li faq - A frequently asked question. \li howto - A user guide on how to use some components of the software. - \li example - A page that describes a working example. - \li overview - For text pages that provide an overview of some important subject. \li tutorial - For text pages that are part of a tutorial. - \li api - This is the type of page used for C++ class references and - QML type references. You should never use this one for the pages - you write, because this one is reserved for QDoc. - \endlist The page title is set using the \l {title-command} {\\title} diff -Nru qttools-opensource-src-5.15.2/src/qdoc/docbookgenerator.cpp qttools-opensource-src-5.15.3/src/qdoc/docbookgenerator.cpp --- qttools-opensource-src-5.15.2/src/qdoc/docbookgenerator.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/qdoc/docbookgenerator.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -2436,12 +2436,10 @@ QString title; QString rawTitle; QString fullTitle; - const NamespaceNode *ns = nullptr; if (aggregate->isNamespace()) { rawTitle = aggregate->plainName(); fullTitle = aggregate->plainFullName(); title = rawTitle + " Namespace"; - ns = static_cast(aggregate); } else if (aggregate->isClass()) { rawTitle = aggregate->plainName(); QString templateDecl = node->templateDecl(); @@ -2449,6 +2447,8 @@ fullTitle = QString("%1 %2 ").arg(templateDecl, aggregate->typeWord(false)); fullTitle += aggregate->plainFullName(); title = rawTitle + QLatin1Char(' ') + aggregate->typeWord(true); + } else if (aggregate->isHeader()) { + title = fullTitle = rawTitle = aggregate->fullTitle(); } QString subtitleText; @@ -2479,8 +2479,10 @@ } Sections sections(const_cast(aggregate)); - SectionVector *sectionVector = - ns ? §ions.stdDetailsSections() : §ions.stdCppClassDetailsSections(); + auto *sectionVector = + (aggregate->isNamespace() || aggregate->isHeader()) ? + §ions.stdDetailsSections() : + §ions.stdCppClassDetailsSections(); SectionVector::ConstIterator section = sectionVector->constBegin(); while (section != sectionVector->constEnd()) { bool headerGenerated = false; @@ -3420,8 +3422,9 @@ case QmlSignalHandler: { QString handler(node->name()); - handler[0] = handler[0].toTitleCase(); - handler.prepend(QLatin1String("on")); + int prefixLocation = handler.lastIndexOf('.', -2) + 1; + handler[prefixLocation] = handler[prefixLocation].toTitleCase(); + handler.insert(prefixLocation, QLatin1String("on")); writer->writeStartElement(dbNamespace, "para"); writer->writeCharacters("The corresponding handler is "); writer->writeTextElement(dbNamespace, "code", handler); diff -Nru qttools-opensource-src-5.15.2/src/qdoc/generator.cpp qttools-opensource-src-5.15.3/src/qdoc/generator.cpp --- qttools-opensource-src-5.15.2/src/qdoc/generator.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/qdoc/generator.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -1387,8 +1387,9 @@ case QmlSignalHandler: { QString handler(node->name()); - handler[0] = handler[0].toTitleCase(); - handler.prepend(QLatin1String("on")); + int prefixLocation = handler.lastIndexOf('.', -2) + 1; + handler[prefixLocation] = handler[prefixLocation].toTitleCase(); + handler.insert(prefixLocation, QLatin1String("on")); text << "The corresponding handler is " << Atom(Atom::FormattingLeft, ATOM_FORMATTING_TELETYPE) << handler << Atom(Atom::FormattingRight, ATOM_FORMATTING_TELETYPE) << "."; diff -Nru qttools-opensource-src-5.15.2/src/qdoc/helpprojectwriter.cpp qttools-opensource-src-5.15.3/src/qdoc/helpprojectwriter.cpp --- qttools-opensource-src-5.15.2/src/qdoc/helpprojectwriter.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/qdoc/helpprojectwriter.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -234,7 +234,7 @@ if (!node->url().isEmpty() && !(project.includeIndexNodes && !node->url().startsWith("http"))) return false; - if (node->isPrivate() || node->isInternal()) + if (node->isPrivate() || node->isInternal() || node->isDontDocument()) return false; if (node->name().isEmpty()) diff -Nru qttools-opensource-src-5.15.2/src/qdoc/htmlgenerator.cpp qttools-opensource-src-5.15.3/src/qdoc/htmlgenerator.cpp --- qttools-opensource-src-5.15.2/src/qdoc/htmlgenerator.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/qdoc/htmlgenerator.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -1286,8 +1286,12 @@ QString command = "documentation"; if (aggregate->isClassNode()) command = "\'\\class\' comment"; - aggregate->location().warning( - tr("No %1 for '%2'").arg(command).arg(aggregate->plainSignature())); + if (!ns || ns->isDocumentedHere()) { + aggregate->location().warning( + tr("No %1 for '%2'") + .arg(command) + .arg(aggregate->plainSignature())); + } } else { generateExtractionMark(aggregate, DetailedDescriptionMark); out() << "
\n" // QTBUG-9504 @@ -1774,8 +1778,8 @@ << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK) << Atom(itemRight) << Atom(itemLeft) << Atom(Atom::String, title) << Atom(itemRight); } else { - if (node->isAggregate()) { - QStringList groups = static_cast(node)->groupNames(); + if (node->isPageNode()) { + QStringList groups = static_cast(node)->groupNames(); if (groups.length() == 1) { const Node *groupNode = qdb_->findNodeByNameAndType(QStringList(groups[0]), &Node::isGroup); @@ -2290,8 +2294,8 @@ } } } else if (sections - && (node->isClassNode() || node->isNamespace() || node->isQmlType() - || node->isJsType())) { + && (node->isClassNode() || node->isNamespace() || node->isQmlType() || + node->isJsType() || node->isQmlBasicType() || node->isJsBasicType())) { for (const auto §ion : qAsConst(*sections)) { if (!section.members().isEmpty()) { out() << "
  • doc().metaTagMap().values("tag")) { - const auto &tagList = tag.toLower().split(QLatin1Char(',')); + const auto &tagList = tag.toLower().split(QLatin1Char(','), Qt::SkipEmptyParts); tags += QSet(tagList.cbegin(), tagList.cend()); } diff -Nru qttools-opensource-src-5.15.2/src/qdoc/jscodemarker.cpp qttools-opensource-src-5.15.3/src/qdoc/jscodemarker.cpp --- qttools-opensource-src-5.15.2/src/qdoc/jscodemarker.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/qdoc/jscodemarker.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -78,16 +78,16 @@ */ bool JsCodeMarker::recognizeExtension(const QString &ext) { - return ext == "js" || ext == "json"; + return ext == "js"; } /*! - Returns \c true if the \a language is recognized. We recognize JavaScript, - ECMAScript and JSON. + Returns \c true if the \a language is recognized. We recognize JavaScript and + ECMAScript. */ bool JsCodeMarker::recognizeLanguage(const QString &language) { - return language == "JavaScript" || language == "ECMAScript" || language == "JSON"; + return language == "JavaScript" || language == "ECMAScript"; } /*! diff -Nru qttools-opensource-src-5.15.2/src/qdoc/location.cpp qttools-opensource-src-5.15.3/src/qdoc/location.cpp --- qttools-opensource-src-5.15.2/src/qdoc/location.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/qdoc/location.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -325,7 +325,8 @@ tabSize = config.getInt(CONFIG_TABSIZE); programName = config.programName(); project = config.getString(CONFIG_PROJECT); - warningCount = 0; + if (!config.singleExec()) + warningCount = 0; if (qEnvironmentVariableIsSet("QDOC_ENABLE_WARNINGLIMIT") || config.getBool(CONFIG_WARNINGLIMIT + Config::dot + "enabled")) warningLimit = config.getInt(CONFIG_WARNINGLIMIT); diff -Nru qttools-opensource-src-5.15.2/src/qdoc/node.cpp qttools-opensource-src-5.15.3/src/qdoc/node.cpp --- qttools-opensource-src-5.15.2/src/qdoc/node.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/qdoc/node.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -2749,6 +2749,8 @@ void Aggregate::findAllSince() { for (auto *node : qAsConst(children_)) { + if (node->isRelatedNonmember() && node->parent() != this) + continue; QString sinceString = node->since(); // Insert a new entry into each map for each new since string found. if (!node->isPrivate() && !sinceString.isEmpty()) { diff -Nru qttools-opensource-src-5.15.2/src/qtpaths/qtpaths.cpp qttools-opensource-src-5.15.3/src/qtpaths/qtpaths.cpp --- qttools-opensource-src-5.15.2/src/qtpaths/qtpaths.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/src/qtpaths/qtpaths.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -79,30 +79,44 @@ ::exit(EXIT_FAILURE); } - -/* - * NOTE: that DataLocation and CacheLocation are missing as - * they don't really make sense for a utility like this because - * they include the application name. - */ -static const struct StringEnum { +class StringEnum { +public: const char *stringvalue; QStandardPaths::StandardLocation enumvalue; -} lookupTableData[] = { - { "ApplicationsLocation", QStandardPaths::ApplicationsLocation }, - { "DesktopLocation", QStandardPaths::DesktopLocation }, - { "DocumentsLocation", QStandardPaths::DocumentsLocation }, - { "FontsLocation", QStandardPaths::FontsLocation }, - { "MusicLocation", QStandardPaths::MusicLocation }, - { "MoviesLocation", QStandardPaths::MoviesLocation }, - { "PicturesLocation", QStandardPaths::PicturesLocation }, - { "HomeLocation", QStandardPaths::HomeLocation }, - { "GenericCacheLocation", QStandardPaths::GenericCacheLocation }, - { "GenericDataLocation", QStandardPaths::GenericDataLocation }, - { "RuntimeLocation", QStandardPaths::RuntimeLocation }, - { "ConfigLocation", QStandardPaths::ConfigLocation }, - { "GenericConfigLocation", QStandardPaths::GenericConfigLocation }, - { "DownloadLocation", QStandardPaths::DownloadLocation } + bool hasappname; + + /** + * Replace application name by generic name if requested + */ + QString mapName(const QString &s) const + { + return hasappname ? QString(s).replace("qtpaths", "") : s; + } +}; + +static const StringEnum lookupTableData[] = { + { "AppConfigLocation", QStandardPaths::AppConfigLocation, true }, + { "AppDataLocation", QStandardPaths::AppDataLocation, true }, + { "AppLocalDataLocation", QStandardPaths::AppLocalDataLocation, true }, + { "ApplicationsLocation", QStandardPaths::ApplicationsLocation, false }, + { "CacheLocation", QStandardPaths::CacheLocation, true }, + { "ConfigLocation", QStandardPaths::ConfigLocation, false }, +#if QT_VERSION < QT_VERSION_CHECK(6,0,0) + { "DataLocation", QStandardPaths::DataLocation, true }, +#endif + { "DesktopLocation", QStandardPaths::DesktopLocation, false }, + { "DocumentsLocation", QStandardPaths::DocumentsLocation, false }, + { "DownloadLocation", QStandardPaths::DownloadLocation, false }, + { "FontsLocation", QStandardPaths::FontsLocation, false }, + { "GenericCacheLocation", QStandardPaths::GenericCacheLocation, false }, + { "GenericConfigLocation", QStandardPaths::GenericConfigLocation, false }, + { "GenericDataLocation", QStandardPaths::GenericDataLocation, false }, + { "HomeLocation", QStandardPaths::HomeLocation, false }, + { "MoviesLocation", QStandardPaths::MoviesLocation, false }, + { "MusicLocation", QStandardPaths::MusicLocation, false }, + { "PicturesLocation", QStandardPaths::PicturesLocation, false }, + { "RuntimeLocation", QStandardPaths::RuntimeLocation, false }, + { "TempLocation", QStandardPaths::TempLocation, false } }; /** @@ -118,14 +132,14 @@ } /** - * Tries to parse the location string into a StandardLocation or alternatively + * Tries to arse the location string into a reference to a StringEnum entry or alternatively * calls \ref error with a error message */ -static QStandardPaths::StandardLocation parseLocationOrError(const QString &locationString) +static const StringEnum &parseLocationOrError(const QString &locationString) { for (const StringEnum &se : lookupTableData) if (locationString == QLatin1String(se.stringvalue)) - return se.enumvalue; + return se; QString message = QCoreApplication::translate("qtpaths", "Unknown location: %1"); error(message.arg(locationString)); @@ -246,21 +260,21 @@ } if (parser.isSet(display)) { - QStandardPaths::StandardLocation location = parseLocationOrError(parser.value(display)); - QString text = QStandardPaths::displayName(location); - results << text; + const StringEnum &location = parseLocationOrError(parser.value(display)); + QString text = QStandardPaths::displayName(location.enumvalue); + results << location.mapName(text); } if (parser.isSet(paths)) { - QStandardPaths::StandardLocation location = parseLocationOrError(parser.value(paths)); - QStringList paths = QStandardPaths::standardLocations(location); - results << paths.join(pathsep); + const StringEnum &location = parseLocationOrError(parser.value(paths)); + QStringList paths = QStandardPaths::standardLocations(location.enumvalue); + results << location.mapName(paths.join(pathsep)); } if (parser.isSet(writablePath)) { - QStandardPaths::StandardLocation location = parseLocationOrError(parser.value(writablePath)); - QString path = QStandardPaths::writableLocation(location); - results << path; + const StringEnum &location = parseLocationOrError(parser.value(writablePath)); + QString path = QStandardPaths::writableLocation(location.enumvalue); + results << location.mapName(path); } if (parser.isSet(findExe)) { @@ -270,31 +284,31 @@ } if (parser.isSet(locateDir)) { - QStandardPaths::StandardLocation location = parseLocationOrError(parser.value(locateDir)); + const StringEnum &location = parseLocationOrError(parser.value(locateDir)); QString searchitem = searchStringOrError(&parser); - QString path = QStandardPaths::locate(location, searchitem, QStandardPaths::LocateDirectory); - results << path; + QString path = QStandardPaths::locate(location.enumvalue, searchitem, QStandardPaths::LocateDirectory); + results << location.mapName(path); } if (parser.isSet(locateFile)) { - QStandardPaths::StandardLocation location = parseLocationOrError(parser.value(locateFile)); + const StringEnum &location = parseLocationOrError(parser.value(locateFile)); QString searchitem = searchStringOrError(&parser); - QString path = QStandardPaths::locate(location, searchitem, QStandardPaths::LocateFile); - results << path; + QString path = QStandardPaths::locate(location.enumvalue, searchitem, QStandardPaths::LocateFile); + results << location.mapName(path); } if (parser.isSet(locateDirs)) { - QStandardPaths::StandardLocation location = parseLocationOrError(parser.value(locateDirs)); + const StringEnum &location = parseLocationOrError(parser.value(locateDirs)); QString searchitem = searchStringOrError(&parser); - QStringList paths = QStandardPaths::locateAll(location, searchitem, QStandardPaths::LocateDirectory); - results << paths.join(pathsep); + QStringList paths = QStandardPaths::locateAll(location.enumvalue, searchitem, QStandardPaths::LocateDirectory); + results << location.mapName(paths.join(pathsep)); } if (parser.isSet(locateFiles)) { - QStandardPaths::StandardLocation location = parseLocationOrError(parser.value(locateFiles)); + const StringEnum &location = parseLocationOrError(parser.value(locateFiles)); QString searchitem = searchStringOrError(&parser); - QStringList paths = QStandardPaths::locateAll(location, searchitem, QStandardPaths::LocateFile); - results << paths.join(pathsep); + QStringList paths = QStandardPaths::locateAll(location.enumvalue, searchitem, QStandardPaths::LocateFile); + results << location.mapName(paths.join(pathsep)); } if (results.isEmpty()) { parser.showHelp(); diff -Nru qttools-opensource-src-5.15.2/.tag qttools-opensource-src-5.15.3/.tag --- qttools-opensource-src-5.15.2/.tag 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/.tag 2021-03-18 10:36:56.000000000 +0000 @@ -1 +1 @@ -cc52debd905e0ed061290d6fd00a5f1ab67478a5 +36831ae742619e13db32ee6048d851bddee28a74 diff -Nru qttools-opensource-src-5.15.2/tests/auto/qdoc/generatedoutput/expected_output/dontdocument/dontdocument.qhp qttools-opensource-src-5.15.3/tests/auto/qdoc/generatedoutput/expected_output/dontdocument/dontdocument.qhp --- qttools-opensource-src-5.15.2/tests/auto/qdoc/generatedoutput/expected_output/dontdocument/dontdocument.qhp 1970-01-01 00:00:00.000000000 +0000 +++ qttools-opensource-src-5.15.3/tests/auto/qdoc/generatedoutput/expected_output/dontdocument/dontdocument.qhp 2021-03-18 10:36:56.000000000 +0000 @@ -0,0 +1,55 @@ + + + org.qt-project.dontdocument.001 + test + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + classes.html + seenclass.html + testcpp-module.html + testqdoc-test-members.html + testqdoc-test-obsolete.html + testqdoc-test.html + testqdoc-testderived-members.html + testqdoc-testderived.html + testqdoc.html + + + diff -Nru qttools-opensource-src-5.15.2/tests/auto/qdoc/generatedoutput/expected_output/headerfile-docbook/testheader.xml qttools-opensource-src-5.15.3/tests/auto/qdoc/generatedoutput/expected_output/headerfile-docbook/testheader.xml --- qttools-opensource-src-5.15.2/tests/auto/qdoc/generatedoutput/expected_output/headerfile-docbook/testheader.xml 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/tests/auto/qdoc/generatedoutput/expected_output/headerfile-docbook/testheader.xml 2021-03-18 10:36:56.000000000 +0000 @@ -1,7 +1,7 @@ - +<TestHeader> - Test Header HeaderFile HeaderFile Reference Documentation @@ -19,4 +19,72 @@ Detailed Description + +Type Documentation + +enum Globals + +Globals +public +active +unspecified +HeaderFile + + + + + + +Constant +Description + + + + +Glo + +0 + + + +Bal + +1 + + + + + +Variable Documentation + +const int globalVar + +const int +globalVar +public +active +unspecified +HeaderFile + +Global variable. + + + +Function Documentation + +void globalFunc() + + +globalFunc + +plain +void globalFunc() +public +active +unspecified +HeaderFile + +Global function. + + diff -Nru qttools-opensource-src-5.15.2/tests/auto/qdoc/generatedoutput/expected_output/qml-int.html qttools-opensource-src-5.15.3/tests/auto/qdoc/generatedoutput/expected_output/qml-int.html --- qttools-opensource-src-5.15.2/tests/auto/qdoc/generatedoutput/expected_output/qml-int.html 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/tests/auto/qdoc/generatedoutput/expected_output/qml-int.html 2021-03-18 10:36:56.000000000 +0000 @@ -10,6 +10,8 @@
  • diff -Nru qttools-opensource-src-5.15.2/tests/auto/qdoc/generatedoutput/testdata/dontdocument/dontdocument.qdocconf qttools-opensource-src-5.15.3/tests/auto/qdoc/generatedoutput/testdata/dontdocument/dontdocument.qdocconf --- qttools-opensource-src-5.15.2/tests/auto/qdoc/generatedoutput/testdata/dontdocument/dontdocument.qdocconf 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/tests/auto/qdoc/generatedoutput/testdata/dontdocument/dontdocument.qdocconf 2021-03-18 10:36:56.000000000 +0000 @@ -3,5 +3,19 @@ headers += dont.h sources += dont.cpp test.qdoc +qhp.projects = DontDocument + +qhp.DontDocument.file = dontdocument.qhp +qhp.DontDocument.namespace = org.qt-project.dontdocument.001 +qhp.DontDocument.virtualFolder = test +qhp.DontDocument.indexTitle = QDoc Test C++ Classes +qhp.DontDocument.indexRoot = + +qhp.DontDocument.subprojects = classes +qhp.DontDocument.subprojects.classes.title = Classes +qhp.DontDocument.subprojects.classes.indexTitle = QDoc Test C++ Classes +qhp.DontDocument.subprojects.classes.selectors = class +qhp.DontDocument.subprojects.classes.sortPages = true + HTML.nosubdirs = true HTML.outputsubdir = dontdocument diff -Nru qttools-opensource-src-5.15.2/tests/auto/qdoc/generatedoutput/tst_generatedoutput.cpp qttools-opensource-src-5.15.3/tests/auto/qdoc/generatedoutput/tst_generatedoutput.cpp --- qttools-opensource-src-5.15.2/tests/auto/qdoc/generatedoutput/tst_generatedoutput.cpp 2020-10-22 17:11:38.000000000 +0000 +++ qttools-opensource-src-5.15.3/tests/auto/qdoc/generatedoutput/tst_generatedoutput.cpp 2021-03-18 10:36:56.000000000 +0000 @@ -349,7 +349,8 @@ { testAndCompare("testdata/dontdocument/dontdocument.qdocconf", "dontdocument/classes.html " - "dontdocument/seenclass.html"); + "dontdocument/seenclass.html " + "dontdocument/dontdocument.qhp"); } void tst_generatedOutput::inheritedQmlPropertyGroups()