Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import QtQuick 1.0
- Item {
- property int number
- property string str
- function func(n, s) {
- number = n;
- str = s;
- print("n:", n, " str:", str);
- }
- Rectangle {
- width: 100
- height: 62
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment