summaryrefslogtreecommitdiffstats
path: root/demos/declarative
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-08-25 23:22:40 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-08-25 23:22:40 (GMT)
commita3fcbe0ddcc87df39afc118b31ac04d543564003 (patch)
tree41b98feaf3c2d19eb3e6a14d8f79bda544a68610 /demos/declarative
parentbdfb4a6363a5bc3cac79bf10aa38542ca2261291 (diff)
downloadQt-a3fcbe0ddcc87df39afc118b31ac04d543564003.zip
Qt-a3fcbe0ddcc87df39afc118b31ac04d543564003.tar.gz
Qt-a3fcbe0ddcc87df39afc118b31ac04d543564003.tar.bz2
small flickr fixes
Diffstat (limited to 'demos/declarative')
-rw-r--r--demos/declarative/flickr/flickr-mobile.qml2
-rw-r--r--demos/declarative/flickr/mobile/GridDelegate.qml2
-rw-r--r--demos/declarative/flickr/mobile/ListDelegate.qml2
-rw-r--r--demos/declarative/flickr/mobile/TitleBar.qml2
4 files changed, 4 insertions, 4 deletions
diff --git a/demos/declarative/flickr/flickr-mobile.qml b/demos/declarative/flickr/flickr-mobile.qml
index a4692a3..ee6366d 100644
--- a/demos/declarative/flickr/flickr-mobile.qml
+++ b/demos/declarative/flickr/flickr-mobile.qml
@@ -33,7 +33,7 @@ Item {
}
}
- Common.ImageDetails { id: ImageDetails; width: parent.width; x: parent.width; height: parent.height }
+ Mobile.ImageDetails { id: ImageDetails; width: parent.width; x: parent.width; height: parent.height }
Mobile.TitleBar { id: TitleBar; width: parent.width; height: 40; opacity: 0.9 }
Mobile.ToolBar { id: ToolBar; height: 40; anchors.bottom: parent.bottom; width: parent.width; opacity: 0.9 }
diff --git a/demos/declarative/flickr/mobile/GridDelegate.qml b/demos/declarative/flickr/mobile/GridDelegate.qml
index 8090cd4..30abb05 100644
--- a/demos/declarative/flickr/mobile/GridDelegate.qml
+++ b/demos/declarative/flickr/mobile/GridDelegate.qml
@@ -31,7 +31,7 @@
Rectangle {
id: WhiteRect; width: 77; height: 77; anchors.centerIn: parent; color: "#dddddd"; smooth: true
Image { id: Thumb; source: imagePath; x: 1; y: 1; smooth: true}
- Image { source: "mobile/images/gloss.png"; smooth: true}
+ Image { source: "images/gloss.png" }
}
Connection {
diff --git a/demos/declarative/flickr/mobile/ListDelegate.qml b/demos/declarative/flickr/mobile/ListDelegate.qml
index b9ec7f2..fa6f8ea 100644
--- a/demos/declarative/flickr/mobile/ListDelegate.qml
+++ b/demos/declarative/flickr/mobile/ListDelegate.qml
@@ -6,7 +6,7 @@ Component {
id: Wrapper; width: Wrapper.ListView.view.width; height: 86
Item {
id: MoveMe
- Rectangle { color: "black"; opacity: Wrapper.ListView.index % 2 ? 0.2 : 0.3; height: 84; width: Wrapper.width; y: 1 }
+ Rectangle { color: "black"; opacity: index % 2 ? 0.2 : 0.4; height: 84; width: Wrapper.width; y: 1 }
Rectangle {
id: WhiteRect; x: 6; y: 4; width: 77; height: 77; color: "white"; smooth: true
diff --git a/demos/declarative/flickr/mobile/TitleBar.qml b/demos/declarative/flickr/mobile/TitleBar.qml
index 59b8365..6d655a6 100644
--- a/demos/declarative/flickr/mobile/TitleBar.qml
+++ b/demos/declarative/flickr/mobile/TitleBar.qml
@@ -23,7 +23,7 @@ Item {
anchors.verticalCenter: parent.verticalCenter
elide: "ElideLeft"
text: (RssModel.tags=="" ? "Uploads from everyone" : "Recent Uploads tagged " + RssModel.tags)
- font.pointSize: 10; font.bold: true; color: "white"; style: "Raised"; styleColor: "black"
+ font.bold: true; color: "white"; style: "Raised"; styleColor: "black"
}
Button {