diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2009-09-10 01:18:45 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2009-09-10 01:18:45 (GMT) |
commit | 7fa2ba45442adb7042ddac0e92f8ea5df4eb5619 (patch) | |
tree | adb88ac15473b739c545c4fd155022b726f22548 /demos/declarative/twitter | |
parent | c5369f7168a9e9309514aee9c39e9bfc6813694d (diff) | |
download | Qt-7fa2ba45442adb7042ddac0e92f8ea5df4eb5619.zip Qt-7fa2ba45442adb7042ddac0e92f8ea5df4eb5619.tar.gz Qt-7fa2ba45442adb7042ddac0e92f8ea5df4eb5619.tar.bz2 |
Update demos to work with API changes
Affected are flickr and twitter.
Diffstat (limited to 'demos/declarative/twitter')
-rw-r--r-- | demos/declarative/twitter/content/AuthView.qml | 6 | ||||
-rw-r--r-- | demos/declarative/twitter/content/HomeTitleBar.qml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/demos/declarative/twitter/content/AuthView.qml b/demos/declarative/twitter/content/AuthView.qml index febee94..3fe7e7e 100644 --- a/demos/declarative/twitter/content/AuthView.qml +++ b/demos/declarative/twitter/content/AuthView.qml @@ -27,7 +27,7 @@ Item { anchors.centerIn: parent maximumLength:21 font.bold: true - color: "#151515"; highlightColor: "green" + color: "#151515"; selectionColor: "green" Keys.forwardTo: [(tabber), (nameIn)] Item { id: tabber @@ -56,9 +56,9 @@ Item { height: parent.height - 12 anchors.centerIn: parent maximumLength:21 - echoMode: 2 + echoMode: TextInput.Password font.bold: true - color: "#151515"; highlightColor: "green" + color: "#151515"; selectionColor: "green" } } } diff --git a/demos/declarative/twitter/content/HomeTitleBar.qml b/demos/declarative/twitter/content/HomeTitleBar.qml index 9bca2c8..bd3bc2c 100644 --- a/demos/declarative/twitter/content/HomeTitleBar.qml +++ b/demos/declarative/twitter/content/HomeTitleBar.qml @@ -92,7 +92,7 @@ Item { height: parent.height - 8 font.pointSize: 10 wrap:true - color: "#151515"; highlightColor: "green" + color: "#151515"; selectionColor: "green" } Keys.forwardTo: [(ReturnKey), (Editor)] Item { |