diff options
Diffstat (limited to 'include/notifications/notifications.h')
-rw-r--r-- | include/notifications/notifications.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/notifications/notifications.h b/include/notifications/notifications.h index c2e2d85..d876a57 100644 --- a/include/notifications/notifications.h +++ b/include/notifications/notifications.h @@ -91,16 +91,14 @@ public: bool supports_actions() const; /** Show a notification. - @return nonzero on success, zero on failure. */ + @return zero on failure, or a key that can be passed to close() */ int show(const Builder& builder); /** Close a notification. - @param key the int returned by show() - @return true if the notification was closed. */ + @param key the int returned by show() */ void close(int key); - /** Close all remaining notifications. - *@return true if all closed successfully. */ + /** Close all remaining notifications. */ void close_all(); const std::string& app_name() const; |