Item {
property int now: 0 // will be new Date().getTime() // milliseconds since epoch is 64 bit
property var now: new Date().getTime() // this gives me a parning of "use int or real to improve performance (M311)
}
How can I use the right type and not get the warning?