summaryrefslogtreecommitdiffstats
path: root/demos/declarative/webbrowser/webbrowser.qml
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2010-05-11 03:33:48 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2010-05-12 05:37:17 (GMT)
commit71187a1f0d26ff61c033a7c2d46892f48816fc45 (patch)
tree0234f975938886f4b675a794a56a829a87d89c5f /demos/declarative/webbrowser/webbrowser.qml
parent798bdb4543f84d427659b950a3a1643ae4987b8b (diff)
downloadQt-71187a1f0d26ff61c033a7c2d46892f48816fc45.zip
Qt-71187a1f0d26ff61c033a7c2d46892f48816fc45.tar.gz
Qt-71187a1f0d26ff61c033a7c2d46892f48816fc45.tar.bz2
Flickable small API changes.
- Split moving into movingHorizontally anf movingVertically - Split flicking into flickingHorizontally and flickingVertically - Rename flickDirection to flickableDirection - onMovementStarted, onMovementEnded, onFlickStarted and onFlickEnded signals removed Task-number: QTBUG-10572 Reviewed-by: Martin Jones
Diffstat (limited to 'demos/declarative/webbrowser/webbrowser.qml')
-rw-r--r--demos/declarative/webbrowser/webbrowser.qml14
1 files changed, 5 insertions, 9 deletions
diff --git a/demos/declarative/webbrowser/webbrowser.qml b/demos/declarative/webbrowser/webbrowser.qml
index 27da814..f539e21 100644
--- a/demos/declarative/webbrowser/webbrowser.qml
+++ b/demos/declarative/webbrowser/webbrowser.qml
@@ -15,13 +15,9 @@ Rectangle {
id: webView
url: webBrowser.urlString
anchors { top: headerSpace.bottom; left: parent.left; right: parent.right; bottom: parent.bottom }
-
}
- Item {
- id: headerSpace
- width: parent.width; height: 62
- }
+ Item { id: headerSpace; width: parent.width; height: 62 }
Header {
id: header
@@ -34,8 +30,8 @@ Rectangle {
anchors { right: parent.right; top: header.bottom; bottom: parent.bottom }
}
-// ScrollBar {
-// scrollArea: webView; height: 8; orientation: Qt.Horizontal
-// anchors { right: parent.right; rightMargin: 8; left: parent.left; bottom: parent.bottom }
-// }
+ ScrollBar {
+ scrollArea: webView; height: 8; orientation: Qt.Horizontal
+ anchors { right: parent.right; rightMargin: 8; left: parent.left; bottom: parent.bottom }
+ }
}