diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-10-30 03:55:07 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-10-30 03:55:07 (GMT) |
commit | ce2581dc8e77a9e1e27730a1b22257323a067d97 (patch) | |
tree | 2001275889f88ab017a9fef517f7783ade65fe50 /examples/declarative/clocks/content | |
parent | f37e9d787bd418d8f75997a8d46c1c42e842c673 (diff) | |
download | Qt-ce2581dc8e77a9e1e27730a1b22257323a067d97.zip Qt-ce2581dc8e77a9e1e27730a1b22257323a067d97.tar.gz Qt-ce2581dc8e77a9e1e27730a1b22257323a067d97.tar.bz2 |
change cities in clock example
Diffstat (limited to 'examples/declarative/clocks/content')
-rw-r--r-- | examples/declarative/clocks/content/Clock.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/declarative/clocks/content/Clock.qml b/examples/declarative/clocks/content/Clock.qml index 636c99f..4e9984f 100644 --- a/examples/declarative/clocks/content/Clock.qml +++ b/examples/declarative/clocks/content/Clock.qml @@ -8,12 +8,12 @@ Item { property var hours property var minutes property var seconds - property int shift : 0 + property var shift : 0 function timeChanged() { var date = new Date; - hours = date.getUTCHours() + clock.shift - minutes = date.getUTCMinutes(); + hours = date.getUTCHours() + Math.floor(clock.shift) + minutes = date.getUTCMinutes() + ((clock.shift % 1) * 60); seconds = date.getUTCSeconds(); } |