summaryrefslogtreecommitdiffstats
path: root/tests/manual/inquickwidget/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Change license for test filesLucie Gérard2024-04-051-1/+1
| | | | | | | | | | | | According to QUIP-18 [1], all test files should be LicenseRef-Qt-Commercial OR GPL-3.0-only [1]: https://contribute.qt-project.org/quips/18 Pick-to: 6.7 Task-number: QTBUG-121787 Change-Id: I90dc70a85a6699858ca8f6c6b48bb4e125a22da7 Reviewed-by: Kai Köhne <kai.koehne@qt.io>
* Fix assert when WebView is used in combination with QQuickWidgetChristian Strømme2022-10-271-0/+21
Using the WebView with QQuickWidget is not really a use-case the WebView is well suited for, due to the native WebView being an overlay, however it should not crash or trigger an assert, so this change tries to avoid some of the caveats when mixing with QQuickWidget. For example, we cannot under any circumstances call winId() before the window the QQuickWidget lives under, is backed by a platform window. The native WebView is therefore not added before the platform window is created. Pick-to: 6.4 6.2 5.15 Fixes: QTBUG-46084 Change-Id: I815d37cdd0328b3a258ef60294b5ea282f41cfc6 Reviewed-by: Christian Strømme <christian.stromme@qt.io>