summaryrefslogtreecommitdiffstats
path: root/demos/declarative/twitter/content/MultiTitleBar.qml
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-10-06 02:51:22 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-10-06 02:51:22 (GMT)
commitb9663faad39ae02b7dbee9f2cea7dce7d25894f8 (patch)
treeb46fa4f56750ce70d24ed42fc4de284de5bbea97 /demos/declarative/twitter/content/MultiTitleBar.qml
parentabf7649fb60a87208a3d915d97f4fee9bee02f26 (diff)
downloadQt-b9663faad39ae02b7dbee9f2cea7dce7d25894f8.zip
Qt-b9663faad39ae02b7dbee9f2cea7dce7d25894f8.tar.gz
Qt-b9663faad39ae02b7dbee9f2cea7dce7d25894f8.tar.bz2
lowercase ids
Diffstat (limited to 'demos/declarative/twitter/content/MultiTitleBar.qml')
-rw-r--r--demos/declarative/twitter/content/MultiTitleBar.qml14
1 files changed, 7 insertions, 7 deletions
diff --git a/demos/declarative/twitter/content/MultiTitleBar.qml b/demos/declarative/twitter/content/MultiTitleBar.qml
index 6a6a28f..da0794d 100644
--- a/demos/declarative/twitter/content/MultiTitleBar.qml
+++ b/demos/declarative/twitter/content/MultiTitleBar.qml
@@ -2,20 +2,20 @@ import Qt 4.6
import "../../flickr/mobile"
Item {
- height: HomeBar.height
- HomeTitleBar { id: HomeBar; width: parent.width; height: 60;
- onUpdate: RssModel.reload()
+ height: homeBar.height
+ HomeTitleBar { id: homeBar; width: parent.width; height: 60;
+ onUpdate: rssModel.reload()
}
- TitleBar { id: TitleBar; width: parent.width; height: 60;
+ TitleBar { id: titleBar; width: parent.width; height: 60;
y: -80
untaggedString: "Latest tweets from everyone"
taggedString: "Latest tweets from "
}
states: [
State {
- name: "search"; when: Screen.userView
- PropertyChanges { target: TitleBar; y: 0 }
- PropertyChanges { target: HomeBar; y: -80 }
+ name: "search"; when: screen.userView
+ PropertyChanges { target: titleBar; y: 0 }
+ PropertyChanges { target: homeBar; y: -80 }
}
]
transitions: [