diff options
author | Lucie Gérard <[email protected]> | 2024-02-15 12:33:44 +0100 |
---|---|---|
committer | Lucie Gérard <[email protected]> | 2024-02-15 21:34:59 +0100 |
commit | 039d51835f4c2a3956e929f7ef7f525dccbd7fd5 (patch) | |
tree | 22186a5c3c048dffc9acacaafe630aee622eca49 | |
parent | 7a512d1267442e646bb7942291197b2b03f4d1cd (diff) |
Correct license in widget/kernel
According to QUIP-18 [1], all module files should be
LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
or
LicenseRef-Qt-Commercial OR GPL-3.0-only
LGPD and non-LGPL licenses should not be mixed in a
given directory.
The files in this patch now match the other files
in the same directory and QUIP-18 rule.
[1]: https://contribute.qt-project.org/quips/18
Pick-to: 6.7
Task-number: QTBUG-121787
Change-Id: Ied60c775fbae38d6edeabc669f782b39d02c28f4
Reviewed-by: Kai Köhne <[email protected]>
-rw-r--r-- | src/widgets/kernel/qrhiwidget.cpp | 2 | ||||
-rw-r--r-- | src/widgets/kernel/qrhiwidget.h | 2 | ||||
-rw-r--r-- | src/widgets/kernel/qrhiwidget_p.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/widgets/kernel/qrhiwidget.cpp b/src/widgets/kernel/qrhiwidget.cpp index 6c1a8194757..aa08cb69143 100644 --- a/src/widgets/kernel/qrhiwidget.cpp +++ b/src/widgets/kernel/qrhiwidget.cpp @@ -1,5 +1,5 @@ // Copyright (C) 2023 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #include "qrhiwidget_p.h" #include <private/qguiapplication_p.h> diff --git a/src/widgets/kernel/qrhiwidget.h b/src/widgets/kernel/qrhiwidget.h index 6a95ec12395..331ece3771b 100644 --- a/src/widgets/kernel/qrhiwidget.h +++ b/src/widgets/kernel/qrhiwidget.h @@ -1,5 +1,5 @@ // Copyright (C) 2023 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QRHIWIDGET_H #define QRHIWIDGET_H diff --git a/src/widgets/kernel/qrhiwidget_p.h b/src/widgets/kernel/qrhiwidget_p.h index cf62b135063..b594b67ec82 100644 --- a/src/widgets/kernel/qrhiwidget_p.h +++ b/src/widgets/kernel/qrhiwidget_p.h @@ -1,5 +1,5 @@ // Copyright (C) 2023 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QRHIWIDGET_P_H #define QRHIWIDGET_P_H |