blob: ef9c3d520eac03deed00e83fd8a29ff598f6c902 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "metawatchnotificationwatchlet.h"
using namespace sowatch;
const QLatin1String MetaWatchNotificationWatchlet::myId("com.javispedro.sowatch.metawatch.notification");
MetaWatchNotificationWatchlet::MetaWatchNotificationWatchlet(Watch *watch) :
DeclarativeWatchlet(watch, myId)
{
setSource(QUrl(SOWATCH_QML_DIR "/metawatchwatchlets/" + watch->model() + "-notification.qml"));
}
|