blob: 7e18988c0dac54e4d51e6a47eea8ae215f6ae947 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "metawatchfacewatchlet.h"
using namespace sowatch;
MetaWatchFaceWatchlet::MetaWatchFaceWatchlet(Watch *watch) :
DeclarativeWatchlet(watch, "com.javispedro.sowatch.metawatch.watchface")
{
setSource(QUrl(SOWATCH_QML_DIR "/metawatch/" + watch->model() + "-watchface.qml"));
}
|