summaryrefslogtreecommitdiffstats
path: root/examples/quick
diff options
context:
space:
mode:
authorArvid Nilsson <anilsson@blackberry.com>2013-10-04 11:41:37 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-04 17:13:21 +0200
commit777445253d3e0d083f3e61f8c8e5f753d7e29dae (patch)
tree8290a15fa2641bd7e614e660610e2d5cc9a5b52e /examples/quick
parentf7842507b94bd21ce2ed3d4f0d34e8cd83a1731a (diff)
Fix typo in quickwindow.qml
Set favicon image source to the value of the icon property, not the url. D'oh! Change-Id: I411f787f4f19fbeb2db9a61e4aada79b3527dcfb Reviewed-by: Arvid Nilsson <anilsson@blackberry.com> Reviewed-by: Andras Becsi <andras.becsi@digia.com>
Diffstat (limited to 'examples/quick')
-rw-r--r--examples/quick/quicknanobrowser/quickwindow.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/quick/quicknanobrowser/quickwindow.qml b/examples/quick/quicknanobrowser/quickwindow.qml
index a3b8c405d..3257a9852 100644
--- a/examples/quick/quicknanobrowser/quickwindow.qml
+++ b/examples/quick/quicknanobrowser/quickwindow.qml
@@ -110,7 +110,7 @@ ApplicationWindow {
url: utils.initialUrl()
onUrlChanged: addressBar.text = url
- onIconChanged: faviconImage.source = url
+ onIconChanged: faviconImage.source = icon
onLoadProgressChanged: progressBar.value = loadProgress
}
}