diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2013-05-11 19:17:07 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2013-05-11 19:17:07 +0200 |
commit | bf083973efd101e05d75882b63aad9bdfa37dfbc (patch) | |
tree | c07769c2a82e4b5bba8d3d02558eb4c69a531001 /libsowatch/watch.cpp | |
parent | bc899047089079dde323e84a57efe46ce6af653d (diff) | |
download | sowatch-bf083973efd101e05d75882b63aad9bdfa37dfbc.tar.gz sowatch-bf083973efd101e05d75882b63aad9bdfa37dfbc.zip |
store watchlets in model
Diffstat (limited to 'libsowatch/watch.cpp')
-rw-r--r-- | libsowatch/watch.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libsowatch/watch.cpp b/libsowatch/watch.cpp index e37cdf8..caf46c4 100644 --- a/libsowatch/watch.cpp +++ b/libsowatch/watch.cpp @@ -19,3 +19,13 @@ void Watch::vibrate(int msecs) /* The default implementation does nothing. */ Q_UNUSED(msecs); } + +void Watch::setWatchletsModel(WatchletsModel *model) +{ + Q_UNUSED(model); +} + +void Watch::setNotificationsModel(NotificationsModel *model) +{ + Q_UNUSED(model); +} |