summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/jar/src/org/qtproject/qt/android/view/QtAndroidWebViewController.java2
-rw-r--r--src/plugins/android/qandroidwebview.cpp2
-rw-r--r--src/plugins/android/qandroidwebview_p.h2
-rw-r--r--src/plugins/android/qandroidwebviewplugin.cpp2
-rw-r--r--src/plugins/darwin/qdarwinwebview.mm2
-rw-r--r--src/plugins/darwin/qdarwinwebview_p.h2
-rw-r--r--src/plugins/darwin/qdarwinwebviewplugin.cpp2
-rw-r--r--src/plugins/webengine/qwebenginewebview.cpp2
-rw-r--r--src/plugins/webengine/qwebenginewebview_p.h2
-rw-r--r--src/plugins/webengine/qwebenginewebviewplugin.cpp2
-rw-r--r--src/plugins/winrt/qwinrtwebview.cpp2
-rw-r--r--src/plugins/winrt/qwinrtwebview_p.h2
-rw-r--r--src/plugins/winrt/qwinrtwebviewplugin.cpp2
-rw-r--r--src/quick/qquickviewcontroller.cpp2
-rw-r--r--src/quick/qquickviewcontroller_p.h2
-rw-r--r--src/quick/qquickwebview.cpp2
-rw-r--r--src/quick/qquickwebview_p.h2
-rw-r--r--src/quick/qquickwebviewloadrequest.cpp2
-rw-r--r--src/quick/qquickwebviewloadrequest_p.h2
-rw-r--r--src/quick/qquickwebviewsettings.cpp2
-rw-r--r--src/quick/qquickwebviewsettings_p.h2
-rw-r--r--src/quick/qtwebviewquickglobal_p.h2
-rw-r--r--src/webview/qabstractwebview_p.h2
-rw-r--r--src/webview/qnativeviewcontroller_p.h2
-rw-r--r--src/webview/qtwebviewfunctions.cpp2
-rw-r--r--src/webview/qtwebviewfunctions.h2
-rw-r--r--src/webview/qwebview.cpp2
-rw-r--r--src/webview/qwebview_global.h2
-rw-r--r--src/webview/qwebview_p.h2
-rw-r--r--src/webview/qwebviewfactory.cpp2
-rw-r--r--src/webview/qwebviewfactory_p.h2
-rw-r--r--src/webview/qwebviewinterface_p.h2
-rw-r--r--src/webview/qwebviewloadrequest.cpp2
-rw-r--r--src/webview/qwebviewloadrequest_p.h2
-rw-r--r--src/webview/qwebviewplugin.cpp2
-rw-r--r--src/webview/qwebviewplugin_p.h2
36 files changed, 36 insertions, 36 deletions
diff --git a/src/jar/src/org/qtproject/qt/android/view/QtAndroidWebViewController.java b/src/jar/src/org/qtproject/qt/android/view/QtAndroidWebViewController.java
index 26a5907..369e2a1 100644
--- a/src/jar/src/org/qtproject/qt/android/view/QtAndroidWebViewController.java
+++ b/src/jar/src/org/qtproject/qt/android/view/QtAndroidWebViewController.java
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
package org.qtproject.qt.android.view;
diff --git a/src/plugins/android/qandroidwebview.cpp b/src/plugins/android/qandroidwebview.cpp
index f8c031a..57f0864 100644
--- a/src/plugins/android/qandroidwebview.cpp
+++ b/src/plugins/android/qandroidwebview.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qandroidwebview_p.h"
#include <private/qwebview_p.h>
diff --git a/src/plugins/android/qandroidwebview_p.h b/src/plugins/android/qandroidwebview_p.h
index 0bc9f3d..aa75900 100644
--- a/src/plugins/android/qandroidwebview_p.h
+++ b/src/plugins/android/qandroidwebview_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QANDROIDWEBVIEW_P_H
#define QANDROIDWEBVIEW_P_H
diff --git a/src/plugins/android/qandroidwebviewplugin.cpp b/src/plugins/android/qandroidwebviewplugin.cpp
index b19ffa7..8fe8916 100644
--- a/src/plugins/android/qandroidwebviewplugin.cpp
+++ b/src/plugins/android/qandroidwebviewplugin.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qandroidwebview_p.h"
#include <private/qwebviewplugin_p.h>
diff --git a/src/plugins/darwin/qdarwinwebview.mm b/src/plugins/darwin/qdarwinwebview.mm
index 18b573a..80b9916 100644
--- a/src/plugins/darwin/qdarwinwebview.mm
+++ b/src/plugins/darwin/qdarwinwebview.mm
@@ -1,5 +1,5 @@
// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qdarwinwebview_p.h"
#include <private/qwebview_p.h>
diff --git a/src/plugins/darwin/qdarwinwebview_p.h b/src/plugins/darwin/qdarwinwebview_p.h
index 161d1c8..6625431 100644
--- a/src/plugins/darwin/qdarwinwebview_p.h
+++ b/src/plugins/darwin/qdarwinwebview_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QDARWINWEBVIEW_P_H
#define QDARWINWEBVIEW_P_H
diff --git a/src/plugins/darwin/qdarwinwebviewplugin.cpp b/src/plugins/darwin/qdarwinwebviewplugin.cpp
index cdac8d3..3034cdc 100644
--- a/src/plugins/darwin/qdarwinwebviewplugin.cpp
+++ b/src/plugins/darwin/qdarwinwebviewplugin.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qdarwinwebview_p.h"
#include <private/qwebviewplugin_p.h>
diff --git a/src/plugins/webengine/qwebenginewebview.cpp b/src/plugins/webengine/qwebenginewebview.cpp
index 246d250..958761d 100644
--- a/src/plugins/webengine/qwebenginewebview.cpp
+++ b/src/plugins/webengine/qwebenginewebview.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qwebenginewebview_p.h"
#include <QtWebView/private/qwebview_p.h>
diff --git a/src/plugins/webengine/qwebenginewebview_p.h b/src/plugins/webengine/qwebenginewebview_p.h
index d0f1812..16468d5 100644
--- a/src/plugins/webengine/qwebenginewebview_p.h
+++ b/src/plugins/webengine/qwebenginewebview_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QWEBENGINEWEBVIEW_P_H
#define QWEBENGINEWEBVIEW_P_H
diff --git a/src/plugins/webengine/qwebenginewebviewplugin.cpp b/src/plugins/webengine/qwebenginewebviewplugin.cpp
index 0882f06..86cda88 100644
--- a/src/plugins/webengine/qwebenginewebviewplugin.cpp
+++ b/src/plugins/webengine/qwebenginewebviewplugin.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qwebenginewebview_p.h"
#include <private/qwebviewplugin_p.h>
diff --git a/src/plugins/winrt/qwinrtwebview.cpp b/src/plugins/winrt/qwinrtwebview.cpp
index a107897..a46fada 100644
--- a/src/plugins/winrt/qwinrtwebview.cpp
+++ b/src/plugins/winrt/qwinrtwebview.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qwinrtwebview_p.h"
#include <private/qwebviewloadrequest_p.h>
diff --git a/src/plugins/winrt/qwinrtwebview_p.h b/src/plugins/winrt/qwinrtwebview_p.h
index c5988c9..9b7be1d 100644
--- a/src/plugins/winrt/qwinrtwebview_p.h
+++ b/src/plugins/winrt/qwinrtwebview_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QWINRTWEBVIEW_P_H
#define QWINRTWEBVIEW_P_H
diff --git a/src/plugins/winrt/qwinrtwebviewplugin.cpp b/src/plugins/winrt/qwinrtwebviewplugin.cpp
index 4d5ed5e..bba993f 100644
--- a/src/plugins/winrt/qwinrtwebviewplugin.cpp
+++ b/src/plugins/winrt/qwinrtwebviewplugin.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qwinrtwebview_p.h"
#include <QtWebView/private/qwebviewplugin_p.h>
diff --git a/src/quick/qquickviewcontroller.cpp b/src/quick/qquickviewcontroller.cpp
index 12831c3..4315514 100644
--- a/src/quick/qquickviewcontroller.cpp
+++ b/src/quick/qquickviewcontroller.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qquickviewcontroller_p.h"
#include "QtWebView/private/qwebview_p.h"
diff --git a/src/quick/qquickviewcontroller_p.h b/src/quick/qquickviewcontroller_p.h
index be8e4f4..b690f30 100644
--- a/src/quick/qquickviewcontroller_p.h
+++ b/src/quick/qquickviewcontroller_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QQUICKVIEWCONTROLLER_H
#define QQUICKVIEWCONTROLLER_H
diff --git a/src/quick/qquickwebview.cpp b/src/quick/qquickwebview.cpp
index 26a5c7d..5be3335 100644
--- a/src/quick/qquickwebview.cpp
+++ b/src/quick/qquickwebview.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qquickwebview_p.h"
#include "qquickwebviewloadrequest_p.h"
diff --git a/src/quick/qquickwebview_p.h b/src/quick/qquickwebview_p.h
index ac1b997..a6f7b6e 100644
--- a/src/quick/qquickwebview_p.h
+++ b/src/quick/qquickwebview_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QQUICKWEBVIEW_H
#define QQUICKWEBVIEW_H
diff --git a/src/quick/qquickwebviewloadrequest.cpp b/src/quick/qquickwebviewloadrequest.cpp
index d51cb15..62341f3 100644
--- a/src/quick/qquickwebviewloadrequest.cpp
+++ b/src/quick/qquickwebviewloadrequest.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qquickwebviewloadrequest_p.h"
#include <QtWebView/private/qwebviewloadrequest_p.h>
diff --git a/src/quick/qquickwebviewloadrequest_p.h b/src/quick/qquickwebviewloadrequest_p.h
index 0f97bd7..b7b3aed 100644
--- a/src/quick/qquickwebviewloadrequest_p.h
+++ b/src/quick/qquickwebviewloadrequest_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QQUICKWEBVIEWREQUEST_H
#define QQUICKWEBVIEWREQUEST_H
diff --git a/src/quick/qquickwebviewsettings.cpp b/src/quick/qquickwebviewsettings.cpp
index 4344057..3a184e8 100644
--- a/src/quick/qquickwebviewsettings.cpp
+++ b/src/quick/qquickwebviewsettings.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2022 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qquickwebviewsettings_p.h"
diff --git a/src/quick/qquickwebviewsettings_p.h b/src/quick/qquickwebviewsettings_p.h
index 6d2f57c..dda6f70 100644
--- a/src/quick/qquickwebviewsettings_p.h
+++ b/src/quick/qquickwebviewsettings_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2022 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QQUICKWEBVIEWSETTINGS_H
#define QQUICKWEBVIEWSETTINGS_H
diff --git a/src/quick/qtwebviewquickglobal_p.h b/src/quick/qtwebviewquickglobal_p.h
index 512c86a..950b2f5 100644
--- a/src/quick/qtwebviewquickglobal_p.h
+++ b/src/quick/qtwebviewquickglobal_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QTWEBVIEWQUICKGLOBAL_H
#define QTWEBVIEWQUICKGLOBAL_H
diff --git a/src/webview/qabstractwebview_p.h b/src/webview/qabstractwebview_p.h
index 5278c57..7814906 100644
--- a/src/webview/qabstractwebview_p.h
+++ b/src/webview/qabstractwebview_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QABSTRACTWEBVIEW_P_H
#define QABSTRACTWEBVIEW_P_H
diff --git a/src/webview/qnativeviewcontroller_p.h b/src/webview/qnativeviewcontroller_p.h
index 349b6ab..37a8f45 100644
--- a/src/webview/qnativeviewcontroller_p.h
+++ b/src/webview/qnativeviewcontroller_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QNATIVEVIEWCONTROLLER_P_H
#define QNATIVEVIEWCONTROLLER_P_H
diff --git a/src/webview/qtwebviewfunctions.cpp b/src/webview/qtwebviewfunctions.cpp
index 26fc463..0f0c6a6 100644
--- a/src/webview/qtwebviewfunctions.cpp
+++ b/src/webview/qtwebviewfunctions.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qtwebviewfunctions.h"
diff --git a/src/webview/qtwebviewfunctions.h b/src/webview/qtwebviewfunctions.h
index 2120bc3..d733b04 100644
--- a/src/webview/qtwebviewfunctions.h
+++ b/src/webview/qtwebviewfunctions.h
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QTWEBVIEWFUNCTIONS_H
#define QTWEBVIEWFUNCTIONS_H
diff --git a/src/webview/qwebview.cpp b/src/webview/qwebview.cpp
index 5db7aff..fa3bbd3 100644
--- a/src/webview/qwebview.cpp
+++ b/src/webview/qwebview.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qwebview_p.h"
#include "qwebviewplugin_p.h"
diff --git a/src/webview/qwebview_global.h b/src/webview/qwebview_global.h
index 649bbc6..ee7c2eb 100644
--- a/src/webview/qwebview_global.h
+++ b/src/webview/qwebview_global.h
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QWEBVIEWGLOBAL_H
#define QWEBVIEWGLOBAL_H
diff --git a/src/webview/qwebview_p.h b/src/webview/qwebview_p.h
index 186851c..b561b42 100644
--- a/src/webview/qwebview_p.h
+++ b/src/webview/qwebview_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QWEBVIEW_P_H
#define QWEBVIEW_P_H
diff --git a/src/webview/qwebviewfactory.cpp b/src/webview/qwebviewfactory.cpp
index ddcba71..12f054c 100644
--- a/src/webview/qwebviewfactory.cpp
+++ b/src/webview/qwebviewfactory.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2018 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qwebviewfactory_p.h"
#include "qwebviewplugin_p.h"
diff --git a/src/webview/qwebviewfactory_p.h b/src/webview/qwebviewfactory_p.h
index c94dcbe..80cefcf 100644
--- a/src/webview/qwebviewfactory_p.h
+++ b/src/webview/qwebviewfactory_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2018 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QWEBVIEWFACTORY_H
#define QWEBVIEWFACTORY_H
diff --git a/src/webview/qwebviewinterface_p.h b/src/webview/qwebviewinterface_p.h
index 97a8fd0..70a8bfe 100644
--- a/src/webview/qwebviewinterface_p.h
+++ b/src/webview/qwebviewinterface_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QWEBVIEWINTERFACE_H
#define QWEBVIEWINTERFACE_H
diff --git a/src/webview/qwebviewloadrequest.cpp b/src/webview/qwebviewloadrequest.cpp
index f2a6b1a..c5ae892 100644
--- a/src/webview/qwebviewloadrequest.cpp
+++ b/src/webview/qwebviewloadrequest.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include <QtWebView/private/qwebviewloadrequest_p.h>
diff --git a/src/webview/qwebviewloadrequest_p.h b/src/webview/qwebviewloadrequest_p.h
index 2848e70..ec50f96 100644
--- a/src/webview/qwebviewloadrequest_p.h
+++ b/src/webview/qwebviewloadrequest_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QWEBVIEWLOADREQUESTPRIVATE_H
diff --git a/src/webview/qwebviewplugin.cpp b/src/webview/qwebviewplugin.cpp
index e3f2b3d..4b78776 100644
--- a/src/webview/qwebviewplugin.cpp
+++ b/src/webview/qwebviewplugin.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2018 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qwebviewplugin_p.h"
diff --git a/src/webview/qwebviewplugin_p.h b/src/webview/qwebviewplugin_p.h
index 5b402cd..48b4077 100644
--- a/src/webview/qwebviewplugin_p.h
+++ b/src/webview/qwebviewplugin_p.h
@@ -1,5 +1,5 @@
// Copyright (C) 2018 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QWEBVIEWPLUGIN_H
#define QWEBVIEWPLUGIN_H