blob: 89e61ca0c9b0ceacfbc3332c2898f04fcb5ae00b (
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(SOWATCH_QML_DIR "/notificationswatchlet/" + server->watch()->model() + ".qml"));
}
|