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