author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Mon, 04 Oct 2010 01:19:32 +0300 | |
changeset 37 | 758a864f9613 |
permissions | -rw-r--r-- |
import Qt 4.7 import Qt.test 1.0 import "backtrace1.js" as Script Rectangle { id: mainRectangle property string foo: "Default"; width: 200 height: 200 MyTestObject { function append(a, b) { return a + " " + b; } id: testObject; someProperty: append("Hello", mainRectangle.foo) onSignaled: { Script.functionInScript(value , "b"); } } }