kimitake

NextPage.qml

Aug 11th, 2011
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. import QtQuick 1.0
  2.  
  3. Item {
  4. property variant rec1: rec1
  5. property variant rec2: rec2
  6.  
  7. function func(s) {
  8. print("msg:", s.msg);
  9. }
  10.  
  11. Item {
  12. id: rec1
  13. property string msg: "Hello"
  14. }
  15.  
  16. Item {
  17. id: rec2
  18. property string msg: "World"
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment