blob: 4a3cc5279319d28dfbd4123e9250e3fd073fcae9 [file] [log] [blame]
import QtQml 2.0
QtObject {
id: root
property bool testFunc;
property bool ok: false
property QtObject subObject: QtObject {
function testFunc()
{
root.ok = true
}
Component.onCompleted: testFunc()
}
}