blob: 01110e9426cb7e502174b96c743d0b0d4cc40dd2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "notificationswatchlet.h"
using namespace sowatch;
NotificationsWatchlet::NotificationsWatchlet(WatchServer* server) :
DeclarativeWatchlet(server, "com.javispedro.sowatch.notifications")
{
setSource(QUrl("qrc:/notificationswatchlet/" + server->watch()->model() + ".qml"));
}
|