Details
-
Sub-task
-
Resolution: Won't Do
-
P3: Somewhat important
-
None
-
None
Description
When creating an alias for a property in the own object I would not expect to have
to qualify it with the object id.
import QtQuick 1.0 Rectangle { id: rect width: 100; height: 100; color: "blue" property alias foo: rect.color // works property alias bar: color // should work too, but doesn't }