aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/nonSpuriousParentWarning.qml
Commit message (Collapse)AuthorAgeFilesLines
* qmllint: Improve parent handlingFabian Kosmale2019-07-261-0/+8
- Do not warn about parent access in unknown components This avoids false positive warnings when an imported component could not be found (or when it actually was not imported). We still warn about the component which could not be found, so the user is still informed that something is not right. We also still emit a warning when we know the properties of a component, and parent is not one of them. - Do not recommend the use of parent to address the root components properties. For this to work, we would need to know whether the root component reparents its children or not. Moreover, id lookups are actually faster than parent lookups. Change-Id: I83d0e71e4bf20d34a3e6d836c2b123b2bf0d416e Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>