tests/auto/declarative/qdeclarativeecmascript/data/include_callback.qml
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
equal deleted inserted replaced
27:93b982ccede2 31:5daf16870df6
       
     1 import Qt 4.7
       
     2 import "include_callback.js" as IncludeTest
       
     3 
       
     4 QtObject {
       
     5     property bool test1: false
       
     6     property bool test2: false
       
     7     property bool test3: false
       
     8     property bool test4: false
       
     9     property bool test5: false
       
    10     property bool test6: false
       
    11 
       
    12     Component.onCompleted: { 
       
    13         IncludeTest.go(); 
       
    14     }
       
    15 }