diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2013-05-05 03:18:46 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2013-05-05 03:18:46 +0200 |
commit | 12cf6df3f1c90c6ccbab398f0ae03c946e4af638 (patch) | |
tree | a205f1240a421a1a6ac4d97e592730e5be00533b /libsowatch/watchletplugininterface.h | |
parent | 12d61ddf50f5f34cafd25d7cbdc827156cfb184c (diff) | |
download | sowatch-12cf6df3f1c90c6ccbab398f0ae03c946e4af638.tar.gz sowatch-12cf6df3f1c90c6ccbab398f0ae03c946e4af638.zip |
continue working on qml watchface support
Diffstat (limited to 'libsowatch/watchletplugininterface.h')
-rw-r--r-- | libsowatch/watchletplugininterface.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libsowatch/watchletplugininterface.h b/libsowatch/watchletplugininterface.h index 5e99605..ed90467 100644 --- a/libsowatch/watchletplugininterface.h +++ b/libsowatch/watchletplugininterface.h @@ -22,7 +22,13 @@ public: struct WatchletInfo { QString name; QUrl icon; + bool hidden; QUrl configQmlUrl; + + inline WatchletInfo() : + hidden(false) + { + } }; virtual QStringList watchlets() = 0; |