diff options
Diffstat (limited to 'WebKit/qt/examples/platformplugin/WebNotificationPresenter.h')
-rw-r--r-- | WebKit/qt/examples/platformplugin/WebNotificationPresenter.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/WebKit/qt/examples/platformplugin/WebNotificationPresenter.h b/WebKit/qt/examples/platformplugin/WebNotificationPresenter.h index a2563b2..f46e5cb 100644 --- a/WebKit/qt/examples/platformplugin/WebNotificationPresenter.h +++ b/WebKit/qt/examples/platformplugin/WebNotificationPresenter.h @@ -36,6 +36,7 @@ public: Q_SIGNALS: void notificationClosed(); + void notificationClicked(); }; class WebNotificationPresenter : public QWebNotificationPresenter @@ -47,6 +48,7 @@ public: { m_widget = new WebNotificationWidget(); connect(m_widget, SIGNAL(notificationClosed()), this, SIGNAL(notificationClosed())); + connect(m_widget, SIGNAL(notificationClicked()), this, SIGNAL(notificationClicked())); } virtual ~WebNotificationPresenter() { m_widget->close(); delete m_widget; } |