diff options
author | Ian Walters <ian.walters@nokia.com> | 2009-06-18 01:05:13 (GMT) |
---|---|---|
committer | Ian Walters <ian.walters@nokia.com> | 2009-06-18 01:05:13 (GMT) |
commit | ff93dcfdb3e279771b65fff8f245ac8d76cda15d (patch) | |
tree | 81f5e49b4468e23452c29b00e42373bf323fced8 /demos/declarative/contacts | |
parent | aa0ef24ecdd2007d90ec4086a267a2ae930ae01e (diff) | |
download | Qt-ff93dcfdb3e279771b65fff8f245ac8d76cda15d.zip Qt-ff93dcfdb3e279771b65fff8f245ac8d76cda15d.tar.gz Qt-ff93dcfdb3e279771b65fff8f245ac8d76cda15d.tar.bz2 |
Keyword name change
Behaviour was renamed Behavior. Was Australian spelling, now
US spelling.
Diffstat (limited to 'demos/declarative/contacts')
-rw-r--r-- | demos/declarative/contacts/Button.qml | 2 | ||||
-rw-r--r-- | demos/declarative/contacts/FieldText.qml | 2 | ||||
-rw-r--r-- | demos/declarative/contacts/RemoveButton.qml | 2 | ||||
-rw-r--r-- | demos/declarative/contacts/contacts.qml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/demos/declarative/contacts/Button.qml b/demos/declarative/contacts/Button.qml index d9f1236..3b76a13 100644 --- a/demos/declarative/contacts/Button.qml +++ b/demos/declarative/contacts/Button.qml @@ -48,7 +48,7 @@ Item { } ] } - opacity: Behaviour { + opacity: Behavior { NumericAnimation { property: "opacity" duration: 250 diff --git a/demos/declarative/contacts/FieldText.qml b/demos/declarative/contacts/FieldText.qml index eb18ef2..39e45d4 100644 --- a/demos/declarative/contacts/FieldText.qml +++ b/demos/declarative/contacts/FieldText.qml @@ -73,7 +73,7 @@ Rect { font.bold: true text: fieldText.label opacity: textEdit.text == '' ? 1 : 0 - opacity: Behaviour { + opacity: Behavior { NumericAnimation { property: "opacity" duration: 250 diff --git a/demos/declarative/contacts/RemoveButton.qml b/demos/declarative/contacts/RemoveButton.qml index 59e3fcb..8f46fcb 100644 --- a/demos/declarative/contacts/RemoveButton.qml +++ b/demos/declarative/contacts/RemoveButton.qml @@ -76,7 +76,7 @@ Rect { text: "Remove" opacity: 0 } - opacity: Behaviour { + opacity: Behavior { NumericAnimation { property: "opacity" duration: 250 diff --git a/demos/declarative/contacts/contacts.qml b/demos/declarative/contacts/contacts.qml index 9b6d321..0ce9948 100644 --- a/demos/declarative/contacts/contacts.qml +++ b/demos/declarative/contacts/contacts.qml @@ -220,7 +220,7 @@ Rect { pen.width: 0 color: 'white' opacity: contacts.mode == 'list' ? 1 : 0 - opacity: Behaviour { + opacity: Behavior { NumericAnimation { property: "opacity" duration: 250 |