aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickimage/data
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2015-04-27 09:52:51 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-04-27 14:40:00 +0200
commite2447f9f5fbe6c8c070ce454bb48c5e45b8c35b3 (patch)
tree5ea8ffde57b47a44577ca79b90daafab52eedd1b /tests/auto/quick/qquickimage/data
parent8018c4b6e7743c576a3548f6e73e588f19f632a9 (diff)
parent7302bc550aa75600c7cdcf5c3d34404e0a09cf67 (diff)
Merge remote-tracking branch 'origin/5.4' into 5.5
Conflicts: .qmake.conf tests/auto/qml/qqmlxmlhttprequest/tst_qqmlxmlhttprequest.cpp Change-Id: I715b8a78b74cbe0dcaf599367fd6e08af4858e11
Diffstat (limited to 'tests/auto/quick/qquickimage/data')
-rw-r--r--tests/auto/quick/qquickimage/data/qtbug_22125.qml18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/auto/quick/qquickimage/data/qtbug_22125.qml b/tests/auto/quick/qquickimage/data/qtbug_22125.qml
index 9b68c0a125..30c0b1d7fb 100644
--- a/tests/auto/quick/qquickimage/data/qtbug_22125.qml
+++ b/tests/auto/quick/qquickimage/data/qtbug_22125.qml
@@ -8,7 +8,7 @@ Item {
GridView {
anchors.fill: parent
delegate: Image {
- source: imagePath;
+ source: serverBaseUrl + imagePath;
asynchronous: true
smooth: true
width: 200
@@ -16,28 +16,28 @@ Item {
}
model: ListModel {
ListElement {
- imagePath: "http://127.0.0.1:14451/big256.png"
+ imagePath: "/big256.png"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/big256.png"
+ imagePath: "/big256.png"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/big256.png"
+ imagePath: "/big256.png"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/colors.png"
+ imagePath: "/colors.png"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/colors1.png"
+ imagePath: "/colors1.png"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/big.jpeg"
+ imagePath: "/big.jpeg"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/heart.png"
+ imagePath: "/heart.png"
}
ListElement {
- imagePath: "http://127.0.0.1:14451/green.png"
+ imagePath: "/green.png"
}
}
}