diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2012-01-03 21:36:06 +0100 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2012-01-03 21:36:06 +0100 |
commit | d114dd1b289934c9c8d034622e79e0b913062b19 (patch) | |
tree | 1b81adf830ff9caac9b06fee7709e00b3f07b473 /qmapwatchlet/qmapwatchlet.cpp | |
parent | aad1e8e930bade201aa9bb1db4568423394ced14 (diff) | |
download | sowatch-d114dd1b289934c9c8d034622e79e0b913062b19.tar.gz sowatch-d114dd1b289934c9c8d034622e79e0b913062b19.zip |
moving map qml out of qrc
Diffstat (limited to 'qmapwatchlet/qmapwatchlet.cpp')
-rw-r--r-- | qmapwatchlet/qmapwatchlet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmapwatchlet/qmapwatchlet.cpp b/qmapwatchlet/qmapwatchlet.cpp index c77ede4..d90de47 100644 --- a/qmapwatchlet/qmapwatchlet.cpp +++ b/qmapwatchlet/qmapwatchlet.cpp @@ -6,6 +6,6 @@ QMapWatchlet::QMapWatchlet(WatchServer* server) : DeclarativeWatchlet(server, "com.javispedro.sowatch.map") { - setSource(QUrl("qrc:/qmapwatchlet/" + server->watch()->model() + ".qml")); + setSource(QUrl(SOWATCH_QML_DIR "/qmapwatchlet/" + server->watch()->model() + ".qml")); } |