diff options
author | Kai Köhne <[email protected]> | 2022-12-21 10:12:09 +0100 |
---|---|---|
committer | Kai Köhne <[email protected]> | 2023-01-06 11:15:13 +0000 |
commit | 56baf8c058792187b574cf988fcf4b313f527156 (patch) | |
tree | a9bb31e87e9e962f756d8477477785ea7b8fca47 /tests/manual | |
parent | 126d1d009e64bc39529cd1a118ad8c22e9f7fdfe (diff) |
Remove GPL-3.0+ from license identifiers
Since we also license under GPL-3.0 WITH Qt-GPL-exception-1.0,
this applies only to a hypothetical newer version of GPL, that doesn't
exist yet. If such a version emerges, we can still decide to relicense...
While at it, replace (deprecated) GPL-3.0 with more explicit GPL-3.0-only
Change was done by running
find . -type f -exec perl -pi -e "s/LicenseRef-Qt-Commercial OR GPL-3.0\+ OR GPL-3.0 WITH Qt-GPL-exception-1.0/LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0/g" {} \;
Change-Id: I5097e6ce8d10233993ee30d7e25120e2659eb10b
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'tests/manual')
142 files changed, 142 insertions, 142 deletions
diff --git a/tests/manual/clang-format-for-qtc/test.cpp b/tests/manual/clang-format-for-qtc/test.cpp index 105ce50c333..e205651a569 100644 --- a/tests/manual/clang-format-for-qtc/test.cpp +++ b/tests/manual/clang-format-for-qtc/test.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2017 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 // // KEEP THIS FILE COMPILABLE TO ENSURE THAT WE TEST AGAINST VALID CODE. diff --git a/tests/manual/cmakepresets/main.cpp b/tests/manual/cmakepresets/main.cpp index 07e552ae40b..11cb5a131d6 100644 --- a/tests/manual/cmakepresets/main.cpp +++ b/tests/manual/cmakepresets/main.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2022 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "mainwindow.h" diff --git a/tests/manual/cmakepresets/mainwindow.cpp b/tests/manual/cmakepresets/mainwindow.cpp index b629f972a9b..f0c13dfa549 100644 --- a/tests/manual/cmakepresets/mainwindow.cpp +++ b/tests/manual/cmakepresets/mainwindow.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2022 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "mainwindow.h" #include "./ui_mainwindow.h" diff --git a/tests/manual/cmakepresets/mainwindow.h b/tests/manual/cmakepresets/mainwindow.h index 38395521b05..e7ae438c53d 100644 --- a/tests/manual/cmakepresets/mainwindow.h +++ b/tests/manual/cmakepresets/mainwindow.h @@ -1,5 +1,5 @@ // Copyright (C) 2022 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #ifndef MAINWINDOW_H #define MAINWINDOW_H diff --git a/tests/manual/cplusplus-tools/detail/header.h b/tests/manual/cplusplus-tools/detail/header.h index d419009f822..5452506fc12 100644 --- a/tests/manual/cplusplus-tools/detail/header.h +++ b/tests/manual/cplusplus-tools/detail/header.h @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once diff --git a/tests/manual/cplusplus-tools/detail/source.cpp b/tests/manual/cplusplus-tools/detail/source.cpp index 2cb46468608..67d9c20d24a 100644 --- a/tests/manual/cplusplus-tools/detail/source.cpp +++ b/tests/manual/cplusplus-tools/detail/source.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "header.h" #include "dummy.h" diff --git a/tests/manual/cplusplus-tools/dummy.cpp b/tests/manual/cplusplus-tools/dummy.cpp index 381a4d4a59a..3335c48ce69 100644 --- a/tests/manual/cplusplus-tools/dummy.cpp +++ b/tests/manual/cplusplus-tools/dummy.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "dummy.h" #include "detail/header.h" diff --git a/tests/manual/cplusplus-tools/dummy.h b/tests/manual/cplusplus-tools/dummy.h index c17b26c16ce..8f4a7e64c6b 100644 --- a/tests/manual/cplusplus-tools/dummy.h +++ b/tests/manual/cplusplus-tools/dummy.h @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once diff --git a/tests/manual/cplusplus-tools/main.cpp b/tests/manual/cplusplus-tools/main.cpp index a5846142662..8bbcc377073 100644 --- a/tests/manual/cplusplus-tools/main.cpp +++ b/tests/manual/cplusplus-tools/main.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 /* Follow includes diff --git a/tests/manual/cppquickfix/completeswitchcasestatement.cpp b/tests/manual/cppquickfix/completeswitchcasestatement.cpp index c9ff1cfe7c8..4f1c073323f 100644 --- a/tests/manual/cppquickfix/completeswitchcasestatement.cpp +++ b/tests/manual/cppquickfix/completeswitchcasestatement.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 namespace Foo { enum Orientation { diff --git a/tests/manual/cppquickfix/convertnumericliteral.cpp b/tests/manual/cppquickfix/convertnumericliteral.cpp index 0c4efe4bfb6..3ca6bcf4389 100644 --- a/tests/manual/cppquickfix/convertnumericliteral.cpp +++ b/tests/manual/cppquickfix/convertnumericliteral.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 int main() { diff --git a/tests/manual/debugger/boost/main.cpp b/tests/manual/debugger/boost/main.cpp index eb6f9133981..02e5cab04b1 100644 --- a/tests/manual/debugger/boost/main.cpp +++ b/tests/manual/debugger/boost/main.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <boost/optional.hpp> #include <string> diff --git a/tests/manual/debugger/cli-io/main.cpp b/tests/manual/debugger/cli-io/main.cpp index 45584b3e406..e9af651cdc8 100644 --- a/tests/manual/debugger/cli-io/main.cpp +++ b/tests/manual/debugger/cli-io/main.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <QCoreApplication> #include <QDebug> diff --git a/tests/manual/debugger/console/main.cpp b/tests/manual/debugger/console/main.cpp index 497c93d98bd..1f0959785ff 100644 --- a/tests/manual/debugger/console/main.cpp +++ b/tests/manual/debugger/console/main.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2021 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <QCoreApplication> #include <QDebug> diff --git a/tests/manual/debugger/gui/mainwindow.cpp b/tests/manual/debugger/gui/mainwindow.cpp index 9ff684510ca..831f266ca0b 100644 --- a/tests/manual/debugger/gui/mainwindow.cpp +++ b/tests/manual/debugger/gui/mainwindow.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "mainwindow.h" #include "ui_mainwindow.h" diff --git a/tests/manual/debugger/gui/mainwindow.h b/tests/manual/debugger/gui/mainwindow.h index 711ec784ad3..c7848a6a6aa 100644 --- a/tests/manual/debugger/gui/mainwindow.h +++ b/tests/manual/debugger/gui/mainwindow.h @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once diff --git a/tests/manual/debugger/gui/tst_gui.cpp b/tests/manual/debugger/gui/tst_gui.cpp index 1a264c678a5..e40fdee4a3e 100644 --- a/tests/manual/debugger/gui/tst_gui.cpp +++ b/tests/manual/debugger/gui/tst_gui.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <QApplication> #include <QDebug> diff --git a/tests/manual/debugger/script/math.js b/tests/manual/debugger/script/math.js index c97f1a3fdc9..b63655962ca 100644 --- a/tests/manual/debugger/script/math.js +++ b/tests/manual/debugger/script/math.js @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 function cube(a) { diff --git a/tests/manual/debugger/simple/deep/deep/simple_test_app.h b/tests/manual/debugger/simple/deep/deep/simple_test_app.h index 3ac1b665a3b..01289bb90bb 100644 --- a/tests/manual/debugger/simple/deep/deep/simple_test_app.h +++ b/tests/manual/debugger/simple/deep/deep/simple_test_app.h @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once diff --git a/tests/manual/debugger/simple/simple_test_app.cpp b/tests/manual/debugger/simple/simple_test_app.cpp index 14cb6fbd469..0f3da8bf302 100644 --- a/tests/manual/debugger/simple/simple_test_app.cpp +++ b/tests/manual/debugger/simple/simple_test_app.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <qglobal.h> diff --git a/tests/manual/debugger/simple/simple_test_plugin.cpp b/tests/manual/debugger/simple/simple_test_plugin.cpp index f60b12ed816..b4862208a05 100644 --- a/tests/manual/debugger/simple/simple_test_plugin.cpp +++ b/tests/manual/debugger/simple/simple_test_plugin.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <stdio.h> #include <qglobal.h> diff --git a/tests/manual/debugger/spacy path/app with space.cpp b/tests/manual/debugger/spacy path/app with space.cpp index 3badfa39b83..e4a18bc9c6b 100644 --- a/tests/manual/debugger/spacy path/app with space.cpp +++ b/tests/manual/debugger/spacy path/app with space.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <QDebug> #include <QDir> diff --git a/tests/manual/debugger/spacy path/plugin with space.cpp b/tests/manual/debugger/spacy path/plugin with space.cpp index 6658c26e9e2..850bbbe51ab 100644 --- a/tests/manual/debugger/spacy path/plugin with space.cpp +++ b/tests/manual/debugger/spacy path/plugin with space.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <stdio.h> #include <qglobal.h> diff --git a/tests/manual/debugger/spacy-file/app with space.cpp b/tests/manual/debugger/spacy-file/app with space.cpp index 3badfa39b83..e4a18bc9c6b 100644 --- a/tests/manual/debugger/spacy-file/app with space.cpp +++ b/tests/manual/debugger/spacy-file/app with space.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <QDebug> #include <QDir> diff --git a/tests/manual/debugger/spacy-file/plugin with space.cpp b/tests/manual/debugger/spacy-file/plugin with space.cpp index 6658c26e9e2..850bbbe51ab 100644 --- a/tests/manual/debugger/spacy-file/plugin with space.cpp +++ b/tests/manual/debugger/spacy-file/plugin with space.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <stdio.h> #include <qglobal.h> diff --git a/tests/manual/deviceshell/tst_deviceshell.cpp b/tests/manual/deviceshell/tst_deviceshell.cpp index f23efd82318..10c14149758 100644 --- a/tests/manual/deviceshell/tst_deviceshell.cpp +++ b/tests/manual/deviceshell/tst_deviceshell.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2022 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <app/app_version.h> diff --git a/tests/manual/docker/boot2qt/build.sh b/tests/manual/docker/boot2qt/build.sh index 12d5c9bacf3..51e74c926a0 100644 --- a/tests/manual/docker/boot2qt/build.sh +++ b/tests/manual/docker/boot2qt/build.sh @@ -1,7 +1,7 @@ #!/bin/sh # Copyright (C) 2021 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 uid=$(id -u) gid=$(id -g) diff --git a/tests/manual/dockwidgets/main.cpp b/tests/manual/dockwidgets/main.cpp index f735ac75bbb..57933e9c070 100644 --- a/tests/manual/dockwidgets/main.cpp +++ b/tests/manual/dockwidgets/main.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "mainwindow.h" diff --git a/tests/manual/dockwidgets/mainwindow.cpp b/tests/manual/dockwidgets/mainwindow.cpp index 2f51ba71f08..983a6e6d217 100644 --- a/tests/manual/dockwidgets/mainwindow.cpp +++ b/tests/manual/dockwidgets/mainwindow.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "qdockarrows.h" #include "mainwindow.h" diff --git a/tests/manual/dockwidgets/mainwindow.h b/tests/manual/dockwidgets/mainwindow.h index 5dcd7e215a8..8527c41ee74 100644 --- a/tests/manual/dockwidgets/mainwindow.h +++ b/tests/manual/dockwidgets/mainwindow.h @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once diff --git a/tests/manual/fakevim/main.cpp b/tests/manual/fakevim/main.cpp index 9cd88f9f05c..c733dd63198 100644 --- a/tests/manual/fakevim/main.cpp +++ b/tests/manual/fakevim/main.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "fakevimhandler.h" diff --git a/tests/manual/features/tst_features.cpp b/tests/manual/features/tst_features.cpp index 722e0c39a50..516df450e17 100644 --- a/tests/manual/features/tst_features.cpp +++ b/tests/manual/features/tst_features.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <QtTest> #include <QFile> diff --git a/tests/manual/meson/mesonsampleproject/main.cpp b/tests/manual/meson/mesonsampleproject/main.cpp index beb2507c8d0..806cdc7b094 100644 --- a/tests/manual/meson/mesonsampleproject/main.cpp +++ b/tests/manual/meson/mesonsampleproject/main.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2020 Alexis Jeandet. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "mesonsampleproject.h" #include <QApplication> diff --git a/tests/manual/meson/mesonsampleproject/mesonsampleproject.cpp b/tests/manual/meson/mesonsampleproject/mesonsampleproject.cpp index bd798fcb1e6..85dc6e02240 100644 --- a/tests/manual/meson/mesonsampleproject/mesonsampleproject.cpp +++ b/tests/manual/meson/mesonsampleproject/mesonsampleproject.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2020 Alexis Jeandet. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "mesonsampleproject.h" #include "ui_mesonsampleproject.h" diff --git a/tests/manual/meson/mesonsampleproject/mesonsampleproject.h b/tests/manual/meson/mesonsampleproject/mesonsampleproject.h index 89968bc1900..7c46e6b385b 100644 --- a/tests/manual/meson/mesonsampleproject/mesonsampleproject.h +++ b/tests/manual/meson/mesonsampleproject/mesonsampleproject.h @@ -1,5 +1,5 @@ // Copyright (C) 2020 Alexis Jeandet. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #ifndef MESONSAMPLEPROJECT_H #define MESONSAMPLEPROJECT_H diff --git a/tests/manual/pluginview/plugindialog.cpp b/tests/manual/pluginview/plugindialog.cpp index 072db8e2046..460411dc7eb 100644 --- a/tests/manual/pluginview/plugindialog.cpp +++ b/tests/manual/pluginview/plugindialog.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "plugindialog.h" diff --git a/tests/manual/pluginview/plugindialog.h b/tests/manual/pluginview/plugindialog.h index 140c703a6ca..0df0d0ca3c7 100644 --- a/tests/manual/pluginview/plugindialog.h +++ b/tests/manual/pluginview/plugindialog.h @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once diff --git a/tests/manual/pluginview/plugins/plugin1/plugin1.cpp b/tests/manual/pluginview/plugins/plugin1/plugin1.cpp index 4c12c3dc70a..2a052b5ed1c 100644 --- a/tests/manual/pluginview/plugins/plugin1/plugin1.cpp +++ b/tests/manual/pluginview/plugins/plugin1/plugin1.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "plugin1.h" diff --git a/tests/manual/pluginview/plugins/plugin1/plugin1.h b/tests/manual/pluginview/plugins/plugin1/plugin1.h index a2b16772788..43ebbff30b4 100644 --- a/tests/manual/pluginview/plugins/plugin1/plugin1.h +++ b/tests/manual/pluginview/plugins/plugin1/plugin1.h @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once diff --git a/tests/manual/pluginview/plugins/plugin2/plugin2.cpp b/tests/manual/pluginview/plugins/plugin2/plugin2.cpp index d14d6b5f666..a761afebe46 100644 --- a/tests/manual/pluginview/plugins/plugin2/plugin2.cpp +++ b/tests/manual/pluginview/plugins/plugin2/plugin2.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "plugin2.h" diff --git a/tests/manual/pluginview/plugins/plugin2/plugin2.h b/tests/manual/pluginview/plugins/plugin2/plugin2.h index 5c34850e07b..6f2456da85e 100644 --- a/tests/manual/pluginview/plugins/plugin2/plugin2.h +++ b/tests/manual/pluginview/plugins/plugin2/plugin2.h @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once diff --git a/tests/manual/pluginview/plugins/plugin3/plugin3.cpp b/tests/manual/pluginview/plugins/plugin3/plugin3.cpp index 6faf9b63245..aa534f024b0 100644 --- a/tests/manual/pluginview/plugins/plugin3/plugin3.cpp +++ b/tests/manual/pluginview/plugins/plugin3/plugin3.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "plugin3.h" diff --git a/tests/manual/pluginview/plugins/plugin3/plugin3.h b/tests/manual/pluginview/plugins/plugin3/plugin3.h index 5c8ea5b3120..e593f674b80 100644 --- a/tests/manual/pluginview/plugins/plugin3/plugin3.h +++ b/tests/manual/pluginview/plugins/plugin3/plugin3.h @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once diff --git a/tests/manual/proparser/main.cpp b/tests/manual/proparser/main.cpp index 4002fa5f080..81d9bac2116 100644 --- a/tests/manual/proparser/main.cpp +++ b/tests/manual/proparser/main.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "qmakeglobals.h" #include "qmakevfs.h" diff --git a/tests/manual/python/pyproject/imports/Charts/chartbackground.qml b/tests/manual/python/pyproject/imports/Charts/chartbackground.qml index d9793f21aa8..182786421a8 100644 --- a/tests/manual/python/pyproject/imports/Charts/chartbackground.qml +++ b/tests/manual/python/pyproject/imports/Charts/chartbackground.qml @@ -1,5 +1,5 @@ // Copyright (C) 2020 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.12 diff --git a/tests/manual/python/pyproject/main.qml b/tests/manual/python/pyproject/main.qml index 7ee9d9175bc..4b9392b4e50 100644 --- a/tests/manual/python/pyproject/main.qml +++ b/tests/manual/python/pyproject/main.qml @@ -1,5 +1,5 @@ // Copyright (C) 2020 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.12 import QtQuick.Window 2.12 diff --git a/tests/manual/qml/testfiles_quick2/components/MyButton.qml b/tests/manual/qml/testfiles_quick2/components/MyButton.qml index 550d91334b8..191785a79cd 100644 --- a/tests/manual/qml/testfiles_quick2/components/MyButton.qml +++ b/tests/manual/qml/testfiles_quick2/components/MyButton.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testfiles_quick2/empty.qml b/tests/manual/qml/testfiles_quick2/empty.qml index e347fc53951..7f1e36dc34d 100644 --- a/tests/manual/qml/testfiles_quick2/empty.qml +++ b/tests/manual/qml/testfiles_quick2/empty.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testfiles_quick2/flipable.qml b/tests/manual/qml/testfiles_quick2/flipable.qml index 4d782c7f5ef..3ad85a4165f 100644 --- a/tests/manual/qml/testfiles_quick2/flipable.qml +++ b/tests/manual/qml/testfiles_quick2/flipable.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testfiles_quick2/helloworld.qml b/tests/manual/qml/testfiles_quick2/helloworld.qml index a2e7a7ec1f5..f2d6fbdaa50 100644 --- a/tests/manual/qml/testfiles_quick2/helloworld.qml +++ b/tests/manual/qml/testfiles_quick2/helloworld.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testfiles_quick2/helloworld_inverted.qml b/tests/manual/qml/testfiles_quick2/helloworld_inverted.qml index 1edb0db04e2..2a8cf8bfda8 100644 --- a/tests/manual/qml/testfiles_quick2/helloworld_inverted.qml +++ b/tests/manual/qml/testfiles_quick2/helloworld_inverted.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testfiles_quick2/images.qml b/tests/manual/qml/testfiles_quick2/images.qml index ed383c73986..6e982cbf439 100644 --- a/tests/manual/qml/testfiles_quick2/images.qml +++ b/tests/manual/qml/testfiles_quick2/images.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testfiles_quick2/listmodel.qml b/tests/manual/qml/testfiles_quick2/listmodel.qml index 711558ab871..4c5f761ccf1 100644 --- a/tests/manual/qml/testfiles_quick2/listmodel.qml +++ b/tests/manual/qml/testfiles_quick2/listmodel.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testfiles_quick2/listview.qml b/tests/manual/qml/testfiles_quick2/listview.qml index e95bdbdd3ab..2e401cf1e6b 100644 --- a/tests/manual/qml/testfiles_quick2/listview.qml +++ b/tests/manual/qml/testfiles_quick2/listview.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testfiles_quick2/positioners.qml b/tests/manual/qml/testfiles_quick2/positioners.qml index aebfff62842..55dee37906a 100644 --- a/tests/manual/qml/testfiles_quick2/positioners.qml +++ b/tests/manual/qml/testfiles_quick2/positioners.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testfiles_quick2/states.qml b/tests/manual/qml/testfiles_quick2/states.qml index a0880942163..39ff7a6d28d 100644 --- a/tests/manual/qml/testfiles_quick2/states.qml +++ b/tests/manual/qml/testfiles_quick2/states.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testfiles_quick2/subcomponent.qml b/tests/manual/qml/testfiles_quick2/subcomponent.qml index 1aee2576ff2..df73a23f309 100644 --- a/tests/manual/qml/testfiles_quick2/subcomponent.qml +++ b/tests/manual/qml/testfiles_quick2/subcomponent.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testfiles_quick2/usingbutton.qml b/tests/manual/qml/testfiles_quick2/usingbutton.qml index a5a608c7564..c407e10908e 100644 --- a/tests/manual/qml/testfiles_quick2/usingbutton.qml +++ b/tests/manual/qml/testfiles_quick2/usingbutton.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 import "components" as X diff --git a/tests/manual/qml/testfiles_quick2/views.qml b/tests/manual/qml/testfiles_quick2/views.qml index 462277b3e74..9e1d5cc4362 100644 --- a/tests/manual/qml/testfiles_quick2/views.qml +++ b/tests/manual/qml/testfiles_quick2/views.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testprojects/cppmockup/MainForm.ui.qml b/tests/manual/qml/testprojects/cppmockup/MainForm.ui.qml index 040a8932004..1919cc0effe 100644 --- a/tests/manual/qml/testprojects/cppmockup/MainForm.ui.qml +++ b/tests/manual/qml/testprojects/cppmockup/MainForm.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.7 diff --git a/tests/manual/qml/testprojects/cppmockup/MyComponent.qml b/tests/manual/qml/testprojects/cppmockup/MyComponent.qml index 7e9ce79b1fd..d52f6fd2d95 100644 --- a/tests/manual/qml/testprojects/cppmockup/MyComponent.qml +++ b/tests/manual/qml/testprojects/cppmockup/MyComponent.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.6 import MyPlugin 1.0 diff --git a/tests/manual/qml/testprojects/cppmockup/main.cpp b/tests/manual/qml/testprojects/cppmockup/main.cpp index 544f3876145..7faee5779f8 100644 --- a/tests/manual/qml/testprojects/cppmockup/main.cpp +++ b/tests/manual/qml/testprojects/cppmockup/main.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <mybackendobject.h> diff --git a/tests/manual/qml/testprojects/cppmockup/main.qml b/tests/manual/qml/testprojects/cppmockup/main.qml index 64d79ee7222..0058a1d3513 100644 --- a/tests/manual/qml/testprojects/cppmockup/main.qml +++ b/tests/manual/qml/testprojects/cppmockup/main.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.7 import QtQuick.Window 2.2 diff --git a/tests/manual/qml/testprojects/cppmockup/mybackendobject.cpp b/tests/manual/qml/testprojects/cppmockup/mybackendobject.cpp index 0bddfbf3d01..694f7585e2b 100644 --- a/tests/manual/qml/testprojects/cppmockup/mybackendobject.cpp +++ b/tests/manual/qml/testprojects/cppmockup/mybackendobject.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "mybackendobject.h" diff --git a/tests/manual/qml/testprojects/cppmockup/mybackendobject.h b/tests/manual/qml/testprojects/cppmockup/mybackendobject.h index 53f69872469..d8c1eca5b9d 100644 --- a/tests/manual/qml/testprojects/cppmockup/mybackendobject.h +++ b/tests/manual/qml/testprojects/cppmockup/mybackendobject.h @@ -1,6 +1,6 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once diff --git a/tests/manual/qml/testprojects/directoryimport/directory/MyComponent.qml b/tests/manual/qml/testprojects/directoryimport/directory/MyComponent.qml index 5d740e98c64..8ff583bb12d 100644 --- a/tests/manual/qml/testprojects/directoryimport/directory/MyComponent.qml +++ b/tests/manual/qml/testprojects/directoryimport/directory/MyComponent.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.3 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/directoryimport/directoryimport.qml b/tests/manual/qml/testprojects/directoryimport/directoryimport.qml index 3addec663c5..f541773b498 100644 --- a/tests/manual/qml/testprojects/directoryimport/directoryimport.qml +++ b/tests/manual/qml/testprojects/directoryimport/directoryimport.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.3 import "directory" diff --git a/tests/manual/qml/testprojects/dummycontext/dummydata/context/main.qml b/tests/manual/qml/testprojects/dummycontext/dummydata/context/main.qml index ccb833c4d8d..41410a2289c 100644 --- a/tests/manual/qml/testprojects/dummycontext/dummydata/context/main.qml +++ b/tests/manual/qml/testprojects/dummycontext/dummydata/context/main.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.4 import QmlDesigner 1.0 diff --git a/tests/manual/qml/testprojects/dummycontext/main.qml b/tests/manual/qml/testprojects/dummycontext/main.qml index 26e0e8bf07e..94672a3fb2d 100644 --- a/tests/manual/qml/testprojects/dummycontext/main.qml +++ b/tests/manual/qml/testprojects/dummycontext/main.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.4 diff --git a/tests/manual/qml/testprojects/dummydata/MyListView.qml b/tests/manual/qml/testprojects/dummydata/MyListView.qml index c7482a31386..1a8cb58e671 100644 --- a/tests/manual/qml/testprojects/dummydata/MyListView.qml +++ b/tests/manual/qml/testprojects/dummydata/MyListView.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.4 diff --git a/tests/manual/qml/testprojects/dummydata/dummydata/contactModel.qml b/tests/manual/qml/testprojects/dummydata/dummydata/contactModel.qml index c4e5ba16c6c..1615e94362b 100644 --- a/tests/manual/qml/testprojects/dummydata/dummydata/contactModel.qml +++ b/tests/manual/qml/testprojects/dummydata/dummydata/contactModel.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.4 diff --git a/tests/manual/qml/testprojects/dummydata/main.qml b/tests/manual/qml/testprojects/dummydata/main.qml index fab944de7a1..6c2f7a1f871 100644 --- a/tests/manual/qml/testprojects/dummydata/main.qml +++ b/tests/manual/qml/testprojects/dummydata/main.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.4 diff --git a/tests/manual/qml/testprojects/gridlayout/Testcases01.ui.qml b/tests/manual/qml/testprojects/gridlayout/Testcases01.ui.qml index 263d6f6cb52..8ff51597c52 100644 --- a/tests/manual/qml/testprojects/gridlayout/Testcases01.ui.qml +++ b/tests/manual/qml/testprojects/gridlayout/Testcases01.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 import QtQuick.Layouts 1.0 diff --git a/tests/manual/qml/testprojects/gridlayout/Testcases02.ui.qml b/tests/manual/qml/testprojects/gridlayout/Testcases02.ui.qml index bb06da21abf..33f574d4eb5 100644 --- a/tests/manual/qml/testprojects/gridlayout/Testcases02.ui.qml +++ b/tests/manual/qml/testprojects/gridlayout/Testcases02.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/gridlayout/gridlayout.qml b/tests/manual/qml/testprojects/gridlayout/gridlayout.qml index 0cc174b471a..0691f77870e 100644 --- a/tests/manual/qml/testprojects/gridlayout/gridlayout.qml +++ b/tests/manual/qml/testprojects/gridlayout/gridlayout.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.4 import QtQuick.Controls 1.3 diff --git a/tests/manual/qml/testprojects/metainfohints/imports/test/ForceClip.qml b/tests/manual/qml/testprojects/metainfohints/imports/test/ForceClip.qml index 5b08bc6094b..f11cc8a1640 100644 --- a/tests/manual/qml/testprojects/metainfohints/imports/test/ForceClip.qml +++ b/tests/manual/qml/testprojects/metainfohints/imports/test/ForceClip.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 import QtQuick.Layouts 1.3 diff --git a/tests/manual/qml/testprojects/metainfohints/imports/test/OnlyFormEditor.qml b/tests/manual/qml/testprojects/metainfohints/imports/test/OnlyFormEditor.qml index dace1e2458c..5cbccb78d90 100644 --- a/tests/manual/qml/testprojects/metainfohints/imports/test/OnlyFormEditor.qml +++ b/tests/manual/qml/testprojects/metainfohints/imports/test/OnlyFormEditor.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 import QtQuick.Layouts 1.3 diff --git a/tests/manual/qml/testprojects/metainfohints/imports/test/OnlyNavigator.qml b/tests/manual/qml/testprojects/metainfohints/imports/test/OnlyNavigator.qml index dace1e2458c..5cbccb78d90 100644 --- a/tests/manual/qml/testprojects/metainfohints/imports/test/OnlyNavigator.qml +++ b/tests/manual/qml/testprojects/metainfohints/imports/test/OnlyNavigator.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 import QtQuick.Layouts 1.3 diff --git a/tests/manual/qml/testprojects/metainfohints/imports/test/TestComponent.qml b/tests/manual/qml/testprojects/metainfohints/imports/test/TestComponent.qml index e030ff8707e..94751ed4194 100644 --- a/tests/manual/qml/testprojects/metainfohints/imports/test/TestComponent.qml +++ b/tests/manual/qml/testprojects/metainfohints/imports/test/TestComponent.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testprojects/metainfohints/imports/test/TestLayout.qml b/tests/manual/qml/testprojects/metainfohints/imports/test/TestLayout.qml index 4b901b790fa..d693e7f3b2b 100644 --- a/tests/manual/qml/testprojects/metainfohints/imports/test/TestLayout.qml +++ b/tests/manual/qml/testprojects/metainfohints/imports/test/TestLayout.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 import QtQuick.Layouts 1.3 diff --git a/tests/manual/qml/testprojects/pixelmetrics/PixelMeter.qml b/tests/manual/qml/testprojects/pixelmetrics/PixelMeter.qml index 8aa412cb458..96d3bd3af56 100644 --- a/tests/manual/qml/testprojects/pixelmetrics/PixelMeter.qml +++ b/tests/manual/qml/testprojects/pixelmetrics/PixelMeter.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.10 diff --git a/tests/manual/qml/testprojects/pixelmetrics/pixelmetrics.qml b/tests/manual/qml/testprojects/pixelmetrics/pixelmetrics.qml index 084feb025fb..2e5be450b69 100644 --- a/tests/manual/qml/testprojects/pixelmetrics/pixelmetrics.qml +++ b/tests/manual/qml/testprojects/pixelmetrics/pixelmetrics.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.10 import QtQuick.Window 2.10 diff --git a/tests/manual/qml/testprojects/plugins/imports/MyPlugin/MyComponent.qml b/tests/manual/qml/testprojects/plugins/imports/MyPlugin/MyComponent.qml index e030ff8707e..94751ed4194 100644 --- a/tests/manual/qml/testprojects/plugins/imports/MyPlugin/MyComponent.qml +++ b/tests/manual/qml/testprojects/plugins/imports/MyPlugin/MyComponent.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testprojects/plugins/imports/MyPlugin/MyComponent2.qml b/tests/manual/qml/testprojects/plugins/imports/MyPlugin/MyComponent2.qml index d97cb98b0da..549db0441b9 100644 --- a/tests/manual/qml/testprojects/plugins/imports/MyPlugin/MyComponent2.qml +++ b/tests/manual/qml/testprojects/plugins/imports/MyPlugin/MyComponent2.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testprojects/plugins/imports/MyPlugin/designer/MyComponentSpecifics.qml b/tests/manual/qml/testprojects/plugins/imports/MyPlugin/designer/MyComponentSpecifics.qml index eb78c1ca70a..a5a2fe36c0f 100644 --- a/tests/manual/qml/testprojects/plugins/imports/MyPlugin/designer/MyComponentSpecifics.qml +++ b/tests/manual/qml/testprojects/plugins/imports/MyPlugin/designer/MyComponentSpecifics.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 import HelperWidgets 2.0 diff --git a/tests/manual/qml/testprojects/plugins/imports/MyPlugin2.1/MyComponent.qml b/tests/manual/qml/testprojects/plugins/imports/MyPlugin2.1/MyComponent.qml index 84b9c1cc881..954fc286a99 100644 --- a/tests/manual/qml/testprojects/plugins/imports/MyPlugin2.1/MyComponent.qml +++ b/tests/manual/qml/testprojects/plugins/imports/MyPlugin2.1/MyComponent.qml @@ -1,5 +1,5 @@ // Copyright (C) 2022 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testprojects/plugins/imports/MyPlugin2.1/MyComponent2.qml b/tests/manual/qml/testprojects/plugins/imports/MyPlugin2.1/MyComponent2.qml index ff083b078fc..8da68453f93 100644 --- a/tests/manual/qml/testprojects/plugins/imports/MyPlugin2.1/MyComponent2.qml +++ b/tests/manual/qml/testprojects/plugins/imports/MyPlugin2.1/MyComponent2.qml @@ -1,5 +1,5 @@ // Copyright (C) 2022 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 diff --git a/tests/manual/qml/testprojects/plugins/imports/MyPlugin2.1/designer/MyComponentSpecifics.qml b/tests/manual/qml/testprojects/plugins/imports/MyPlugin2.1/designer/MyComponentSpecifics.qml index 1dbfdf42854..15501840b08 100644 --- a/tests/manual/qml/testprojects/plugins/imports/MyPlugin2.1/designer/MyComponentSpecifics.qml +++ b/tests/manual/qml/testprojects/plugins/imports/MyPlugin2.1/designer/MyComponentSpecifics.qml @@ -1,5 +1,5 @@ // Copyright (C) 2022 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.0 import HelperWidgets 2.0 diff --git a/tests/manual/qml/testprojects/plugins/plugins.qml b/tests/manual/qml/testprojects/plugins/plugins.qml index 43ac84025d5..36b7ea39963 100644 --- a/tests/manual/qml/testprojects/plugins/plugins.qml +++ b/tests/manual/qml/testprojects/plugins/plugins.qml @@ -1,5 +1,5 @@ // Copyright (C) 2022 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick import MyPlugin 1.0 diff --git a/tests/manual/qml/testprojects/plugins/plugins2.qml b/tests/manual/qml/testprojects/plugins/plugins2.qml index 55e27008543..366e52e7ed8 100644 --- a/tests/manual/qml/testprojects/plugins/plugins2.qml +++ b/tests/manual/qml/testprojects/plugins/plugins2.qml @@ -1,5 +1,5 @@ // Copyright (C) 2022 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.3 import MyPlugin2 1.0 diff --git a/tests/manual/qml/testprojects/uisplit/basiclayouts/MainForm.ui.qml b/tests/manual/qml/testprojects/uisplit/basiclayouts/MainForm.ui.qml index 42bc028b413..48f40efc95d 100644 --- a/tests/manual/qml/testprojects/uisplit/basiclayouts/MainForm.ui.qml +++ b/tests/manual/qml/testprojects/uisplit/basiclayouts/MainForm.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/basiclayouts/main.qml b/tests/manual/qml/testprojects/uisplit/basiclayouts/main.qml index 47703773298..0a2295a0a0f 100644 --- a/tests/manual/qml/testprojects/uisplit/basiclayouts/main.qml +++ b/tests/manual/qml/testprojects/uisplit/basiclayouts/main.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/MainTabView.ui.qml b/tests/manual/qml/testprojects/uisplit/gallery/MainTabView.ui.qml index 387b980ec56..d6b6b92c735 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/MainTabView.ui.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/MainTabView.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/AboutDialog.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/AboutDialog.qml index a3acd94f7dc..a19c248a8ac 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/AboutDialog.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/AboutDialog.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Dialogs 1.1 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/ChildWindow.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/ChildWindow.qml index 0cbaf6c3ec8..9360a7db889 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/ChildWindow.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/ChildWindow.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/Controls.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/Controls.qml index 0ce0e40e445..1d8759f69fa 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/Controls.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/Controls.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/ControlsForm.ui.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/ControlsForm.ui.qml index 08bc6587420..fc610d6ece8 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/ControlsForm.ui.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/ControlsForm.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/DummyModel.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/DummyModel.qml index 70bf56487e9..f38a1ae1fb9 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/DummyModel.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/DummyModel.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/ImageViewer.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/ImageViewer.qml index 6f36dba3fe9..7a9045f94b0 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/ImageViewer.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/ImageViewer.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/Layouts.ui.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/Layouts.ui.qml index 8b639dd4b54..2493160b028 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/Layouts.ui.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/Layouts.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/ModelView.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/ModelView.qml index 990c678fc28..4441631c2b8 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/ModelView.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/ModelView.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/Styles.ui.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/Styles.ui.qml index d6053b756fc..b0f4d1447e6 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/Styles.ui.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/Styles.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyButtonStyle1.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyButtonStyle1.qml index 8adc24bbd06..ae1c87d54df 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyButtonStyle1.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyButtonStyle1.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyButtonStyle2.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyButtonStyle2.qml index da604ba574f..f5161f83eb1 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyButtonStyle2.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyButtonStyle2.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyProgressBarStyle1.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyProgressBarStyle1.qml index bfcc8934613..71cba685857 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyProgressBarStyle1.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyProgressBarStyle1.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyProgressBarStyle2.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyProgressBarStyle2.qml index 4243f553723..edcb67c336c 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyProgressBarStyle2.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyProgressBarStyle2.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MySliderStyle1.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MySliderStyle1.qml index 8d680e44125..43dbb0f0aa9 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MySliderStyle1.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MySliderStyle1.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MySliderStyle2.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MySliderStyle2.qml index c9bd63a3582..767246d8688 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MySliderStyle2.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MySliderStyle2.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyTabViewStyle.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyTabViewStyle.qml index e56eb169108..1e48d22b4fd 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyTabViewStyle.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyTabViewStyle.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyTextFieldStyle1.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyTextFieldStyle1.qml index dc86c2f9473..5ec04e0f2fa 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyTextFieldStyle1.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyTextFieldStyle1.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyTextFieldStyle2.qml b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyTextFieldStyle2.qml index 969780dedc5..7ee03d5780c 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyTextFieldStyle2.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/content/styles/MyTextFieldStyle2.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/gallery/main.qml b/tests/manual/qml/testprojects/uisplit/gallery/main.qml index 2c2ee720ce4..c8549874edf 100644 --- a/tests/manual/qml/testprojects/uisplit/gallery/main.qml +++ b/tests/manual/qml/testprojects/uisplit/gallery/main.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.3 import QtQuick.Controls 1.3 diff --git a/tests/manual/qml/testprojects/uisplit/splitview/MainForm.ui.qml b/tests/manual/qml/testprojects/uisplit/splitview/MainForm.ui.qml index 1010e2353ed..b2472dc751c 100644 --- a/tests/manual/qml/testprojects/uisplit/splitview/MainForm.ui.qml +++ b/tests/manual/qml/testprojects/uisplit/splitview/MainForm.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/splitview/main.qml b/tests/manual/qml/testprojects/uisplit/splitview/main.qml index fceb99280d2..aa6989d0cad 100644 --- a/tests/manual/qml/testprojects/uisplit/splitview/main.qml +++ b/tests/manual/qml/testprojects/uisplit/splitview/main.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Controls 1.2 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/MainForm.ui.qml b/tests/manual/qml/testprojects/uisplit/tableview/MainForm.ui.qml index 34f688ffab5..76136b33249 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/MainForm.ui.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/MainForm.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/MainTabView.ui.qml b/tests/manual/qml/testprojects/uisplit/tableview/MainTabView.ui.qml index 902d0a65ec8..5ecb2cb8a71 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/MainTabView.ui.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/MainTabView.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/delegates/Delegate1.qml b/tests/manual/qml/testprojects/uisplit/tableview/delegates/Delegate1.qml index 97b19d6711c..6995e35e5ed 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/delegates/Delegate1.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/delegates/Delegate1.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/delegates/Delegate2.qml b/tests/manual/qml/testprojects/uisplit/tableview/delegates/Delegate2.qml index 8a0d6b0492b..d06d5e5df7d 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/delegates/Delegate2.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/delegates/Delegate2.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/delegates/EditableDelegate.qml b/tests/manual/qml/testprojects/uisplit/tableview/delegates/EditableDelegate.qml index e9d662055d9..2df6af5933a 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/delegates/EditableDelegate.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/delegates/EditableDelegate.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/delegates/HeaderDelegate.qml b/tests/manual/qml/testprojects/uisplit/tableview/delegates/HeaderDelegate.qml index 2dfdc7a787e..9bd5d95b4ad 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/delegates/HeaderDelegate.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/delegates/HeaderDelegate.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/delegates/MultiValueDelegate.qml b/tests/manual/qml/testprojects/uisplit/tableview/delegates/MultiValueDelegate.qml index 00124740255..5dab9a497ab 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/delegates/MultiValueDelegate.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/delegates/MultiValueDelegate.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/delegates/RowDelegate.qml b/tests/manual/qml/testprojects/uisplit/tableview/delegates/RowDelegate.qml index 74b8f673970..e465976e32f 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/delegates/RowDelegate.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/delegates/RowDelegate.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/main.qml b/tests/manual/qml/testprojects/uisplit/tableview/main.qml index baa2f718a85..49ac7c54c29 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/main.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/main.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/models/FlickerModel.qml b/tests/manual/qml/testprojects/uisplit/tableview/models/FlickerModel.qml index aaf01c76e1b..d7a5f7dee8c 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/models/FlickerModel.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/models/FlickerModel.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/models/LargeModel.qml b/tests/manual/qml/testprojects/uisplit/tableview/models/LargeModel.qml index 7e2f122740e..863f54bdc8a 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/models/LargeModel.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/models/LargeModel.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/models/NestedModel.qml b/tests/manual/qml/testprojects/uisplit/tableview/models/NestedModel.qml index c8c83d715b5..27b00ad91f5 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/models/NestedModel.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/models/NestedModel.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabDelegates.qml b/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabDelegates.qml index 0de05c2907e..d929031d53b 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabDelegates.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabDelegates.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabDelegatesForm.ui.qml b/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabDelegatesForm.ui.qml index f649b1083b2..4f3779378fa 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabDelegatesForm.ui.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabDelegatesForm.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabGenerated.ui.qml b/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabGenerated.ui.qml index a180d3c9fff..51c3fa12c44 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabGenerated.ui.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabGenerated.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabMultivalue.ui.qml b/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabMultivalue.ui.qml index 50a7354c5e2..09dbe243137 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabMultivalue.ui.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabMultivalue.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabXmlListModel.ui.qml b/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabXmlListModel.ui.qml index f1008ac8df0..d29e6f0e28d 100644 --- a/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabXmlListModel.ui.qml +++ b/tests/manual/qml/testprojects/uisplit/tableview/tabs/TabXmlListModel.ui.qml @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 import QtQuick 2.2 import QtQuick.Window 2.1 diff --git a/tests/manual/shootout/tst_codesize.cpp b/tests/manual/shootout/tst_codesize.cpp index 673c5b4a02b..bcc454024b1 100644 --- a/tests/manual/shootout/tst_codesize.cpp +++ b/tests/manual/shootout/tst_codesize.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <QDir> #include <QProcess> diff --git a/tests/manual/tasktree/main.cpp b/tests/manual/tasktree/main.cpp index 33d9d9d9d5a..e0a00483749 100644 --- a/tests/manual/tasktree/main.cpp +++ b/tests/manual/tasktree/main.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2022 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "taskwidget.h" diff --git a/tests/manual/tasktree/taskwidget.cpp b/tests/manual/tasktree/taskwidget.cpp index b01fba612f6..a6901f8d136 100644 --- a/tests/manual/tasktree/taskwidget.cpp +++ b/tests/manual/tasktree/taskwidget.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2022 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "taskwidget.h" diff --git a/tests/manual/tasktree/taskwidget.h b/tests/manual/tasktree/taskwidget.h index aa692617b6c..be21ae02e9a 100644 --- a/tests/manual/tasktree/taskwidget.h +++ b/tests/manual/tasktree/taskwidget.h @@ -1,5 +1,5 @@ // Copyright (C) 2022 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <utils/layoutbuilder.h> #include <utils/tasktree.h> diff --git a/tests/manual/widgets/common/themeselector.cpp b/tests/manual/widgets/common/themeselector.cpp index 18b3381498a..2fbdd2424b8 100644 --- a/tests/manual/widgets/common/themeselector.cpp +++ b/tests/manual/widgets/common/themeselector.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2020 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "themeselector.h" diff --git a/tests/manual/widgets/common/themeselector.h b/tests/manual/widgets/common/themeselector.h index 79ac7cc4e01..9e0cb9ab1e7 100644 --- a/tests/manual/widgets/common/themeselector.h +++ b/tests/manual/widgets/common/themeselector.h @@ -1,5 +1,5 @@ // Copyright (C) 2020 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once diff --git a/tests/manual/widgets/crumblepath/tst_manual_widgets_crumblepath.cpp b/tests/manual/widgets/crumblepath/tst_manual_widgets_crumblepath.cpp index d91bf29a03d..5c1349386a6 100644 --- a/tests/manual/widgets/crumblepath/tst_manual_widgets_crumblepath.cpp +++ b/tests/manual/widgets/crumblepath/tst_manual_widgets_crumblepath.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2020 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <QApplication> #include <QBoxLayout> diff --git a/tests/manual/widgets/infolabel/tst_manual_widgets_infolabel.cpp b/tests/manual/widgets/infolabel/tst_manual_widgets_infolabel.cpp index 78d8e5a2f37..288c1fb4a97 100644 --- a/tests/manual/widgets/infolabel/tst_manual_widgets_infolabel.cpp +++ b/tests/manual/widgets/infolabel/tst_manual_widgets_infolabel.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2020 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "../common/themeselector.h" diff --git a/tests/manual/widgets/layoutbuilder/tst_manual_widgets_layoutbuilder.cpp b/tests/manual/widgets/layoutbuilder/tst_manual_widgets_layoutbuilder.cpp index e275fad22ce..3171df83f4a 100644 --- a/tests/manual/widgets/layoutbuilder/tst_manual_widgets_layoutbuilder.cpp +++ b/tests/manual/widgets/layoutbuilder/tst_manual_widgets_layoutbuilder.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2022 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <utils/layoutbuilder.h> diff --git a/tests/manual/widgets/manhattanstyle/tst_manual_widgets_manhattanstyle.cpp b/tests/manual/widgets/manhattanstyle/tst_manual_widgets_manhattanstyle.cpp index a3f9e92353a..30ec55a4015 100644 --- a/tests/manual/widgets/manhattanstyle/tst_manual_widgets_manhattanstyle.cpp +++ b/tests/manual/widgets/manhattanstyle/tst_manual_widgets_manhattanstyle.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2020 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <QApplication> #include <QPushButton> diff --git a/tests/manual/widgets/tracing/tst_manual_widgets_tracing.cpp b/tests/manual/widgets/tracing/tst_manual_widgets_tracing.cpp index 01dfff70446..9b00879df87 100644 --- a/tests/manual/widgets/tracing/tst_manual_widgets_tracing.cpp +++ b/tests/manual/widgets/tracing/tst_manual_widgets_tracing.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2021 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include <QApplication> #include <QQuickView> |