A parent element was accessed without its id .
This makes the code harder to read and impedes performance.
import QtQuick Item { property int helloWorld Item { property int unqualifiedAccess: helloWorld + 1 // not ok: Unqualified access here. } }
You can fix this warning by referring to the parent object by id . If the object currently has no id , you will need to add one first.
import QtQuick Item { id: root property int helloWorld Item { property int unqualifiedAccess: root.helloWorld + 1 // ok: this access is qualified now! } }