summaryrefslogtreecommitdiff
path: root/src/qml/doc
Commit message (Collapse)AuthorAgeFilesLines
* Doc: Replace mentions of deprecated macro Q_ENUMS()Topi Reinio2023-05-162-2/+2
| | | | | | | | | Q_ENUMS() is deprecated in favor of Q_ENUM(). Pick-to: 6.5 Task-number: QTBUG-113229 Change-Id: If562e50a88ff04d02be0aa10c975e0af84d90e44 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Doc: Add missing \target keywords for QML macrosTopi Reinio2023-05-121-3/+5
| | | | | | | | | | | | PAST_MAJOR_VERSIONS, PLUGIN_TARGET, NO_CREATE_PLUGIN_TARGET, and CLASS_NAME are documented and elsewhere in the documentation we try to link to them, but they were missing a \target. Also, fix a link to QT_QML_SOURCE_TYPENAME. Pick-to: 6.5 Change-Id: I74ff0de558d1f43b739f64a4bab19863f8be34cb Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Doc: Document the --verbose flag to qmlcachegenUlf Hermann2023-05-121-0/+17
| | | | | | | | | Amends commit a7c92814f0ff6e9253c781b90e70ad645f8cd94e. Change-Id: I0568298aaa696036b5115f4e93ddeb1cf90c76a3 Reviewed-by: Sami Shalayel <sami.shalayel@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Mike Trahearn <mtrahearn@topcon.com>
* Examples: Move Qml plugin example to manual testsOlivier De Cannière2023-05-121-82/+0
| | | | | | | | | Outdated documention has been removed. Task-number: QTBUG-111036 Change-Id: I8db138ff71615a6ed6ac4cebdb365c27252fa5ee Pick-to: 6.5 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Fix small errors in the C++ integration tutorialsFriedemann Kleint2023-05-052-3/+2
| | | | | | | | | Fix spelling and remove QGraphicsItem::ItemHasNoContents reference. Pick-to: 6.5 Task-number: QTBUG-111033 Change-Id: I9564fa1bb4eb1af786078d1909a3ad8268dfe290 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
* QmlCompiler: Disallow reading from values affected by side effectsUlf Hermann2023-05-041-56/+66
| | | | | | | | | | | | | | Instead of accepting the inconsistency between interpreter and compiled code here, we can just detect whether a value can be affected by side effects and refrain from reading it then. Since you can always explicitly reload a value that may have been changed, the resulting compile warnings are easily worked around in user code. Refactoring user code this way also makes it much clearer what is actually going on. Pick-to: 6.5 Task-number: QTBUG-109221 Change-Id: Ica832e39838ef732b0d181364630737fd7709b74 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
* Docs: Fix "Can't link to" example warningsSafiyyah Moosa2023-05-021-4/+16
| | | | | | | Task-number: QTBUG-113160 Pick-to: 6.5 Change-Id: I49de891c36d778df5d2727f2f0703d534421e2d5 Reviewed-by: Topi Reiniö <topi.reinio@qt.io>
* Doc: Exclude licensing header when including a .qdocincTopi Reinio2023-04-253-2/+4
| | | | | | | | | | | | | The \include command includes the source in its entirety when the second parameter is omitted. This pulled in also the license header which was visible in the generated documentation. Add snippet tags and use them to extract only the content we need. Pick-to: 6.5 Task-number: QTBUG-113138 Change-Id: Ie3fe2fede1e81d08201ec4353352ef069aebc388 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
* Doc: Specify that class name must be fully qualifiedAndreas Eliasson2023-04-252-3/+25
| | | | | | | | | | To avoid confusion, all macros that take a class name as an argument should specify that the class name needs to be fully qualified, even if you're already inside the namespace. Fixes: QTBUG-110718 Pick-to: 6.5 Change-Id: Icaed4be5df44e8d35ef382a918246ed03b0bb0c5 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Doc: Fix typo in QT_QMLLINTER_TARGETS_FOLDER CMake QML property nameLeena Miettinen2023-04-241-1/+1
| | | | | | | Task-number: QTBUG-113116 Pick-to: 6.5 Change-Id: I8d2c1c2e8e96b365b4bd2e6c9a321cdf1824272b Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
* XMLHttpRequest: Implement XHR.overrideMimeType()Edward Welbourne2023-04-201-0/+7
| | | | | | | | | | | | | | | | | It was missing from QQmlXMLHttpRequestCtor, making life painful for XHR users. It's a method that has existed in every XHR specification, and is required, if the goal is to be compliant with any XHR web standard. [ChangeLog][Qml][XMLHttpRequest] Added missing overrideMimeType(mime) method. This function can be used to force the XHR object to parse the data in HTTP responses differently than what the server suggests. Done-with: Oliver Eftevaag <oliver.eftevaag@qt.io> Task-number: QTBUG-53709 Change-Id: I9f8ff37e1604b95306a85fc7e64db6d111b9e069 Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io>
* Doc: Re-phrase descriptions around read-only propertiesSze Howe Koh2023-04-201-6/+6
| | | | | | | | The current text sounds a bit like it's describing a const value. Change-Id: Idf9b8ae14ce032af7ac073419aba6250b26f5847 Pick-to: 6.5 6.2 5.15 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Doc: Promote options for controlling QML compilationAndreas Eliasson2023-04-181-2/+6
| | | | | | | Fixes: QTBUG-112348 Pick-to: 6.5 Change-Id: I69f96ca15b8cae362f54afcd1dc0041e5932afb4 Reviewed-by: Topi Reiniö <topi.reinio@qt.io>
* XHR: Add responseURLTasuku Suzuki2023-04-151-0/+7
| | | | | | | | | | | https://xhr.spec.whatwg.org/#the-responseurl-attribute the attribute was introduced around 2014. [ChangeLog][Qml][XMLHttpRequest] Added missing responseURL property. This returns the url that was used to retrieve the response data, after any redirects have occurred. Change-Id: Ice70520913bb306885a10dfd7a3a89da31bcfdeb Task-number: QTBUG-111217 Reviewed-by: Lars Knoll <lars@knoll.priv.no>
* Fix Qt Quick Compiler docsFabian Kosmale2023-04-061-3/+3
| | | | | | | | A subtitle is not a section Pick-to: 6.5 Change-Id: I870df8d9a69f3a9975cc8c64c213dfaf58105523 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
* Remove the extra backslashAmir Masoud Abdol2023-04-041-1/+1
| | | | | | | Pick-to: 6.5 Change-Id: Ife3ae2398fb5d2e50cd6f46b1f22d8905b042612 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
* Docs: add module dependencies to configurationVolker Hilsheimer2023-04-031-0/+1
| | | | | | | | | | Fixes various warnings when qdoc fails to link to APIs in Network, SVG, or OpenGL modules. Pick-to: 6.5 Change-Id: I4b28ea746094e5d49d6129aa2914f744cda22474 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io> Reviewed-by: Paul Wicking <paul.wicking@qt.io>
* Docs: fix links to QJSManagedValue membersVolker Hilsheimer2023-04-031-1/+2
| | | | | | | Pick-to: 6.5 Change-Id: Icdb523cc61fdf01e4aba2b7506d3f071fe6b5adb Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Paul Wicking <paul.wicking@qt.io>
* Docs: remove more links to String::argVolker Hilsheimer2023-04-032-3/+3
| | | | | | | | There's only a single page about the `string` value type. Pick-to: 6.5 Change-Id: I781dc7ea53c293e1b3d3bdf4be59615e1c0fdf99 Reviewed-by: Paul Wicking <paul.wicking@qt.io>
* Docs: fix warning from trying to link to "string" documentationVolker Hilsheimer2023-03-311-1/+1
| | | | | | | | We don't document that type, only mention that we extend it with `arg`. Pick-to: 6.5 Change-Id: I4acf48bba2d2ed5d1bb6902615c6ba50bbf9feb7 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
* Doc: Revamp "Extending QML" examples into a tutorialOlivier De Cannière2023-03-307-54/+395
| | | | | | | | | | | | | | | | | | | | | | | | The examples in the "Extending QML" series were often redundant with the information of the "Writing QML Extensions with C++" tutorial, had outdated code and sometimes had no documentation. The examples that covered topics not mentioned in the first tutorial were revamped into a second "advanced" tutorial extending the first one. The others were removed. The remaining examples were largely based on the same example code of a birthday party. This code was slightly adapted and separated into 7 states, each building upon the previous, with the code change illustrating the associated feature. A tutorial page, in the style of the first one, was added documenting the different QML features and the required code changes in the example project. Links in the documentation from and to the affected pages were update as best as possible. Pick-to: 6.5 Fixes: QTBUG-111033 Change-Id: I9d97e8b32b128c1624d67525996fa14d493909d3 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Doc: Flatten header structure for 'Import Statements'Kai Köhne2023-03-291-9/+7
| | | | | | | | | | | Remove the top-level 'Import Types' \section2, which is redundant, as there's no second section. This makes sure that the structure of the page is better represented in the side-toc (online version), as it only lists headers of level 1 and 2. Pick-to: 5.15 6.4 6.5 Change-Id: I8a214db6745c9d3054e1aa4277b55b911b605218 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
* Doc: Use \relates for functions and macros in the global scopeTopi Reinio2023-03-291-0/+1
| | | | | | | | | | | | | This addresses the recent warnings introduced by a change to QDoc: src/qmlmodels/qqmlchangeset_p.h:120: (qdoc) warning: No documentation generated for function 'operator<<' in global scope. src/qml/doc/src/qmlfunctions.qdoc:534: (qdoc) warning: No documentation generated for macro 'QML_SEQUENTIAL_CONTAINER' in global scope. Pick-to: 6.5 Change-Id: I437933f797efc7569eb402e5c31cce8c2ba7d301 Reviewed-by: Paul Wicking <paul.wicking@qt.io>
* Doc: Rename and rephrase pages for QML {script|type} compilerUlf Hermann2023-03-286-51/+72
| | | | | | | | | | | | | | | | They describe the user facing concepts, not the actual tools. In the case of QML script compiler there are two tools that implement it. Clarify what qmlsc and qmlcachegen actually do and highlight the differences. Also, lower case all references to type compiler and script compiler. They are not product names and therefore should not be upper cased. Pick-to: 6.5 Change-Id: If800d368c904bd829d88b7376b107b1c5351a1ed Reviewed-by: Andreas Eliasson <andreas.eliasson@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
* Doc: Improve QML string value type documentationAndreas Eliasson2023-03-253-46/+44
| | | | | | | | | | | | | | | | | | QML only has a string value type, no String object type. * Remove the QML String (Object) type page as it may cause confusion. * Clarify that the QML string value type extends the JavaScript String (primitive) type. * Link to the JavaScript Host Environment page for information about which version of ECMAScript QML supports. * Provide some examples of features and methods that QML string supports. * Make minor grammatical adjustments. Fixes: QTBUG-111809 Pick-to: 6.5 Change-Id: Iadbd0586579c6190122cccbd1097a2bc51c0d9e4 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Doc: Fix documentation warningsTopi Reinio2023-03-201-14/+0
| | | | | | | | | | * Remove \generatelist example[files|images] commands, they do not produce any output, only warnings. * Add missing full stop to \brief descriptions. Pick-to: 6.5 Change-Id: I90c67b8c3f3bbe901fa083f781e9056da7763671 Reviewed-by: Paul Wicking <paul.wicking@qt.io>
* CMake: Add docs for NO_PLUGIN and clarify NO_GENERATE_PLUGIN_SOURCEUlf Hermann2023-03-141-1/+16
| | | | | | | | Fixes: QTBUG-111577 Pick-to: 6.5 6.2 Change-Id: I7f259c3b710d0be16844d159e3204ee2e51f2a06 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Sze Howe Koh <szehowe.koh@gmail.com>
* CMake: Add NO_COMPILER_RUNTIME to qt_generate_deploy_qml_app_scriptChristian Heimlich2023-03-131-0/+4
| | | | | | | | | | | | | | | | | | Provides the NO_COMPILER_RUNTIME boolean option to qt_generate_deploy_qml_app_script(), which forwards to qt_deploy_runtime_dependencies(). On Windows, this option prevents the deployment of compiler runtimes. [ChangeLog][CMake] Added the option NO_COMPILER_RUNTIME to qt_generate_deploy_qml_app_script. Task-number: QTBUG-111741 Pick-to: 6.5 6.5.0 Change-Id: Ic51fc5430e21b8c5aba201d4675a37c9c220a3f2 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> Reviewed-by: Amir Masoud Abdol <amir.abdol@qt.io> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
* Doc: Fix a broken link to restructured I18N informationLeena Miettinen2023-03-101-11/+16
| | | | | | | | | | Rewrite using the current style and add links to the translation functions. Pick-to: 6.5 6.5.0 Change-Id: I8257d6e371b508e1ab23b0887eaa6316d2240ee0 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Andreas Eliasson <andreas.eliasson@qt.io>
* Doc: Fix target for qt_deploy_qml_importsVolker Hilsheimer2023-03-091-1/+1
| | | | | | | | Use \keyword instead of \target for proper landing. Pick-to: 6.5 Change-Id: I5ccc8fb3f853e8c65b4797e9b44c0622e1dcf6b4 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
* Doc: fix links to cmake functionsVolker Hilsheimer2023-03-093-19/+23
| | | | | | | | | | Follow the convention that we link to qt6_ prefixed functions, but refer to them in the documentation with only a qt_ prefix and trailing parenths. Pick-to: 6.5 6.5.0 Change-Id: Icd0d5e51d1147f159aaaa4cc7f7faac6dfea5df5 Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io>
* Doc: fix link to cmake functionVolker Hilsheimer2023-03-091-1/+1
| | | | | | | | | Replace qt6_ prefix with qt_. Also refer to cmake functions as such in the text. Pick-to: 6.5 Change-Id: I848a43fc64bd0ed18ce89ca1b720f8dea1f75e6c Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
* Doc: fix qdoc warning, end brief with full stopVolker Hilsheimer2023-03-091-1/+1
| | | | | | Pick-to: 6.5 6.5.0 Change-Id: I5b2401a7aed684da06ff14fad11227b49798583c Reviewed-by: Oliver Eftevaag <oliver.eftevaag@qt.io>
* docs: exception for the void typeSemih Yavuz2023-03-071-0/+1
| | | | | | | | | We cannot use void as a property type. Pick-to: 6.5 Change-Id: I9ca28a762dfb26f2a14b1962856ee7eb8715fda5 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Doc: Remove duplicate words (typos)Andreas Eliasson2023-03-071-1/+1
| | | | | | Pick-to: 6.5 6.4 6.2 Change-Id: Ibd29739b894598e5d7837ed5f9150e08ca07fa35 Reviewed-by: Topi Reiniö <topi.reinio@qt.io>
* Convert XMLHttpRequest example to a snippet and add doc pageOliver Eftevaag2023-03-034-78/+393
| | | | | | | | | | | | | The XmlHttpRequest is poorly documented, and should have its own documentation page, instead of being part of the qml global object page. The XmlHttpRequest example might as well be converted to a snippet, that can be present on the new doc page. Fixes: QTBUG-110003 Pick-to: 6.5 6.5.0 Change-Id: I0ffee43046d4fb71e64f04008b444e11dc8b21ff Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
* QML: Allow as-casting to value typesUlf Hermann2023-03-031-0/+40
| | | | | | | | | | | | | | | | | | | | | | If the "Addressable" option to ValueTypeBehavior is set, you can use the "as" operator to cast a previously unknown type into either undefined or the given type. We can use this in qmlcachegen to generate efficient code for further operations on the same type. In the generated C++ it in fact only works for GetLookup because: a, We generally don't do SetLookup on value types, yet. b, We generally don't call methods on value types, yet. c, We cannot store a union of undefined and a sequence type, yet. However, getting properties of value types is the most important application of the new casts so this is well worth it. As a side effect we can also look up things in potentially undefined results of other operations now. For example list lookups. Task-number: QTBUG-94807 Change-Id: Ifdf34f1f3f67b7a0a8953b9ed0e947b74638a28c Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
* NetworkAccessManagerFactory: Complete documentation page with snippetsOlivier De Cannière2023-03-031-0/+24
| | | | | | | Pick-to: 6.5 6.5.0 Fixes: QTBUG-110657 Change-Id: I063eb4ac25cbe226b5a996014042515d6ada5468 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
* Docs: Reword QML_SEQUENTIAL_CONTAINER documentation to be more concreteOlivier De Cannière2023-03-021-25/+25
| | | | | | | Pick-to: 6.5 Fixes: QTBUG-110469 Change-Id: I097e792c4e7d66bfd9a60d01277e98fc0d952c26 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Import path: Explicitly recommend "qrc:/qt/qml"Fabian Kosmale2023-03-021-0/+5
| | | | | | | | | | Recommend it as a sensible default, and link to qt_add_qml_module and the (Qt) cmake policy to enable that default. Task-number: QTBUG-109799 Pick-to: 6.5 6.5.0 Change-Id: Iae63622bd789bda58a2fb996c3bf1023d1aadac8 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* QTP0001: Mention why you want to enable itFabian Kosmale2023-03-011-1/+6
| | | | | | | | | | | So far, we only mentioned what the policy does. Shortly mention why you actually want to opt-in to it. As a drive-by, also link to qt6_standard_project_setup which can be used to enable the policy, too. Pick-to: 6.5 Change-Id: Ic144ab0a6c9fe424d1a59fb0eeb72dac6a5057e0 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* QML: Fix conflicts between QML_ANONYMOUS, QML_UNCREATABLE and namespacesUlf Hermann2023-02-281-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Even though it makes no sense, we have to allow QML_ANONYMOUS and QML_UNCREATABLE in the same class since we've documented it. You cannot trigger the custom message because you'd need a name to attempt to create an instance of the type. Therefore, the documentation suggesting this is nonsensical. In theory you could indeed provide a custom message for namespaces, but in order to continue supporting this, we would either have to drop the QmlIsUncreatable mechanism, or we would need a different macro. So, let's drop this for now. If we really need it, we can introduce a different macro later. [ChangeLog][QtQml][Important Behavior Changes] You can no longer override the "uncreatable" message for QML-exposed namespaces using QML_UNCREATABLE. This would be incompatible with making the QML_UNCREATABLE macro safe from unintended inheritance. The latter is much more important. Pick-to: 6.5 Fixes: QTBUG-111470 Change-Id: Ib736a2411128d58d939fa2a57d28a0b31c0777e6 Reviewed-by: Robert Griebl <robert.griebl@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
* Port some of the last instances of "0" -> "\nullptr"Ivan Tkachenko2023-02-251-1/+1
| | | | | | | Task-number: PYSIDE-903 Change-Id: I48358f555572900d7fd24c918b9bb411424c351d Reviewed-by: Paul Wicking <paul.wicking@qt.io> Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
* Remove AUTO_RESOURCE_PREFIX, and refer to QTP0001 when possibleAmir Masoud Abdol2023-02-214-18/+16
| | | | | | | | Pick-to: 6.5 Task-number: QTBUG-96233 Change-Id: I4126760dddc9ec1b5c8850fb30a80730e19cb307 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
* Doc: How to combine custom singletons and qt_generate_foreign_qml_typesUlf Hermann2023-02-172-1/+12
| | | | | | | | | | | First, make it more explicit that the QML engine really wants to own the singletons. Then explain how to combine qt_generate_foreign_qml_types with custom types you need to manually manage. Pick-to: 6.5 6.4 Fixes: QTBUG-111169 Change-Id: I9e070c3482014691382c9c1279c918913bdf0307 Reviewed-by: Sze Howe Koh <szehowe.koh@gmail.com>
* Defining QML Types from C++: Add CMake documentationFabian Kosmale2023-02-161-20/+49
| | | | | | | | | | | | So far, we only documented the qmake workflow. Adjust the docs to mention how the same can be achieved in CMake. As a drive-by, use a versionless import in the QML example code. Fixes: QTBUG-107902 Pick-to: 6.5 6.4 6.2 Change-Id: I08ac1262d0d93572077ec86be3b02ce1524bf52a Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* qtqml-tool-qmltc.qdoc: update known limitations and private lib noteSami Shalayel2023-02-151-16/+14
| | | | | | | | | Update the set of common limitations of qmltc, add a note about qmltc requiring the private headers of Qt QML modules and put the encouragement to open bug reports in a \note to be easier seeable. Change-Id: Ice2ae9dc5d2d24bccb5cd052fc49e3d2388aebbe Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* qt_add_qml_module: remove outdated info about qmltcSami Shalayel2023-02-151-4/+0
| | | | | | | | Amends 3df8eba0f5e9f9b0142914d53c1183c5a05030e7. Remove outdated information that the commit above did update. Change-Id: I088b27c685cae2f7412146a1d8fc7d2350ab0e37 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Doc: Update QQmlContext documentation to discourage context propertiesUlf Hermann2023-02-086-0/+174
| | | | | | | | | | The snippets showing the use of setContextProperty() are intentionally removed. You should not do such a thing. Pick-to: 6.5 Fixes: QTBUG-106030 Change-Id: I1c5c217630aee8dd6e44f9f244b9ef2a8d2ef290 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
* Doc: Recommend putting QML files in the same directory as their modulesUlf Hermann2023-02-031-4/+18
| | | | | | | | | Otherwise things quickly get messy. Pick-to: 6.5 Task-number: QTBUG-106929 Change-Id: I9426f3ad3766cad5b133e8ef063696873bb9b7c9 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>