diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-04-09 03:38:04 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-04-09 03:38:04 (GMT) |
commit | 51a8ca0c1fe9d5cce6b430632446a2d3c42989c8 (patch) | |
tree | e9cc3a5988f514cc1fd4fe51a0c29969d21f2c8f /examples/declarative/clocks | |
parent | 45ca7aff2c04c302906a1af0d9d671bb9cb452f0 (diff) | |
download | Qt-51a8ca0c1fe9d5cce6b430632446a2d3c42989c8.zip Qt-51a8ca0c1fe9d5cce6b430632446a2d3c42989c8.tar.gz Qt-51a8ca0c1fe9d5cce6b430632446a2d3c42989c8.tar.bz2 |
Replace "property var " with "property variant " in QML code
Diffstat (limited to 'examples/declarative/clocks')
-rw-r--r-- | examples/declarative/clocks/content/Clock.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/declarative/clocks/content/Clock.qml b/examples/declarative/clocks/content/Clock.qml index c853174..036df46 100644 --- a/examples/declarative/clocks/content/Clock.qml +++ b/examples/declarative/clocks/content/Clock.qml @@ -5,10 +5,10 @@ Item { width: 200; height: 230 property alias city: cityLabel.text - property var hours - property var minutes - property var seconds - property var shift : 0 + property variant hours + property variant minutes + property variant seconds + property variant shift : 0 property bool night: false function timeChanged() { |