blob: 5911a9bfbc8a793d93d8536e74d9e6a59aa5eddd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <QtCore/QDebug>
#include "qorgwatchlet.h"
using namespace sowatch;
QOrgWatchlet::QOrgWatchlet(Watch* watch) :
DeclarativeWatchlet(watch, "com.javispedro.sowatch.qorg")
{
setSource(QUrl(SOWATCH_QML_DIR "/qorgwatchlet/" + watch->model() + ".qml"));
}
|