summaryrefslogtreecommitdiffstats
path: root/examples/location/places_list/main.cpp
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@theqtcompany.com>2015-02-23 11:39:58 +0100
committerAlex Blasche <alexander.blasche@theqtcompany.com>2015-02-24 07:59:02 +0000
commit1cb3ec6e862e99b60aaad488ccb1696c10218365 (patch)
tree2e5518158f3feba3afbbd631980f96833b3e530a /examples/location/places_list/main.cpp
parentec003eb637ced35e7ac3d6e0c256f1244ce0b443 (diff)
Use resource file for places_list example
This avoids issues with relative qml path locations when calling the binary. Change-Id: I6f1c808e8f8abd88a0a3bf39f35a2f0d65b9ed93 Reviewed-by: Michal Klocek <michal.klocek@theqtcompany.com> Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'examples/location/places_list/main.cpp')
-rw-r--r--examples/location/places_list/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/location/places_list/main.cpp b/examples/location/places_list/main.cpp
index a2795657..2db67f78 100644
--- a/examples/location/places_list/main.cpp
+++ b/examples/location/places_list/main.cpp
@@ -45,7 +45,7 @@ int main(int argc, char **argv)
{
QGuiApplication app(argc,argv);
QQuickView view;
- view.setSource(QUrl::fromLocalFile("places_list.qml"));
+ view.setSource(QUrl(QStringLiteral("qrc:///places_list.qml")));
view.show();
return app.exec();
}