summaryrefslogtreecommitdiffstats
path: root/examples/qtquick/quickwindow.qml
diff options
context:
space:
mode:
authorPierre Rossi <pierre.rossi@digia.com>2013-06-18 11:21:35 +0200
committerPierre Rossi <pierre.rossi@digia.com>2013-06-18 11:21:35 +0200
commit787c8f0a614696ef803aed88ddb9a56d5f66f191 (patch)
treecad54d40bfe0215a2db70a031d17e91390eb9c58 /examples/qtquick/quickwindow.qml
parent1b065b291ece9e1228773544633cc21dd0bb4674 (diff)
Qt Quick example: use a qrc file
Diffstat (limited to 'examples/qtquick/quickwindow.qml')
-rw-r--r--examples/qtquick/quickwindow.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/qtquick/quickwindow.qml b/examples/qtquick/quickwindow.qml
index 3fe0389bf..bd6504d6b 100644
--- a/examples/qtquick/quickwindow.qml
+++ b/examples/qtquick/quickwindow.qml
@@ -17,19 +17,19 @@ ApplicationWindow {
ToolButton {
id: backButton
iconName: "go-previous"
- iconSource: "icons/go-previous.png"
+ iconSource: ":/icons/go-previous.png"
onClicked: webContentsView.goBack()
}
ToolButton {
id: forwardButton
iconName: "go-next"
- iconSource: "icons/go-next.png"
+ iconSource: ":/icons/go-next.png"
onClicked: webContentsView.goForward()
}
ToolButton {
id: reloadButton
iconName: "view-refresh"
- iconSource: "icons/view-refresh.png"
+ iconSource: ":/icons/view-refresh.png"
onClicked: webContentsView.reload()
}
TextField {