summaryrefslogtreecommitdiff
path: root/libsowatch/watchlet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libsowatch/watchlet.cpp')
-rw-r--r--libsowatch/watchlet.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/libsowatch/watchlet.cpp b/libsowatch/watchlet.cpp
index dcd9103..03ede41 100644
--- a/libsowatch/watchlet.cpp
+++ b/libsowatch/watchlet.cpp
@@ -50,5 +50,17 @@ void Watchlet::deactivate()
void Watchlet::setNotificationsModel(NotificationsModel *model)
{
+ Q_UNUSED(model);
+}
+bool Watchlet::handlesNotification(Notification *notification) const
+{
+ Q_UNUSED(notification);
+ return false;
+}
+
+void Watchlet::openNotification(Notification *notification)
+{
+ Q_UNUSED(notification);
+ qDebug() << "Watchlet" << _id << "does not override openNotification()";
}