summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2017-04-21 10:53:50 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2017-05-04 06:49:47 +0000
commita218356f838c4be8aad8f447e8d6187a8af639ff (patch)
tree192e97377fcf74a71f1159a3cc98d9be972e3d55
parent555750221ee3850ba70169a2b6854041b434c592 (diff)
downloadqtquickcontrols-a218356f838c4be8aad8f447e8d6187a8af639ff.tar.gz
texteditor example: Fix path to editpaste iconv5.9.0-beta4
Drop prefix so that it can be found from either resources or files. Change-Id: Ib9dcab86f22bff0f8a3d7f0f22aa35d717b3569f Reviewed-by: Simon Hausmann <simon.hausmann@qt.io> Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
-rw-r--r--examples/quickcontrols/controls/texteditor/qml/main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/quickcontrols/controls/texteditor/qml/main.qml b/examples/quickcontrols/controls/texteditor/qml/main.qml
index 8aa9ee7b..1544ebc9 100644
--- a/examples/quickcontrols/controls/texteditor/qml/main.qml
+++ b/examples/quickcontrols/controls/texteditor/qml/main.qml
@@ -93,7 +93,7 @@ ApplicationWindow {
id: pasteAction
text: "Paste"
shortcut: "ctrl+v"
- iconSource: "qrc:images/editpaste.png"
+ iconSource: "images/editpaste.png"
iconName: "edit-paste"
onTriggered: textArea.paste()
}