diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-03-16 21:15:56 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-03-16 21:15:56 -0400 |
commit | 02f7bfefe3185a38f8935b31c68857b986d709ac (patch) | |
tree | 37e481cd52e13bf864ac88dca5a6943cc7ac4585 /src/notifications/notifier.hpp | |
parent | b83bf2a622ecfb667cc89909ebae9180ed5ac117 (diff) | |
download | abaddon-portaudio-02f7bfefe3185a38f8935b31c68857b986d709ac.tar.gz abaddon-portaudio-02f7bfefe3185a38f8935b31c68857b986d709ac.zip |
withdraw notifications on channel open
Diffstat (limited to 'src/notifications/notifier.hpp')
-rw-r--r-- | src/notifications/notifier.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/notifications/notifier.hpp b/src/notifications/notifier.hpp index bed7495..cd3eb71 100644 --- a/src/notifications/notifier.hpp +++ b/src/notifications/notifier.hpp @@ -11,7 +11,8 @@ public: Notifier(); ~Notifier(); - void Notify(const Glib::ustring &title, const Glib::ustring &text, const Glib::ustring &default_action, const std::string &icon_path); + void Notify(const Glib::ustring &id, const Glib::ustring &title, const Glib::ustring &text, const Glib::ustring &default_action, const std::string &icon_path); + void Withdraw(const Glib::ustring &id); private: #ifdef ENABLE_NOTIFICATION_SOUNDS |