blob: d262c2cbadae5e5104798d810b9d67e1aedc6557 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "qmapwatchlet.h"
using namespace sowatch;
const QLatin1String QMapWatchlet::myId("com.javispedro.sowatch.qmap");
QMapWatchlet::QMapWatchlet(WatchServer* server) :
DeclarativeWatchlet(server, myId)
{
setFullUpdateMode(true);
setSource(QUrl(SOWATCH_QML_DIR "/qmapwatchlet/map-" + server->watch()->model() + ".qml"));
}
|