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_null.cpp | |
parent | b83bf2a622ecfb667cc89909ebae9180ed5ac117 (diff) | |
download | abaddon-portaudio-02f7bfefe3185a38f8935b31c68857b986d709ac.tar.gz abaddon-portaudio-02f7bfefe3185a38f8935b31c68857b986d709ac.zip |
withdraw notifications on channel open
Diffstat (limited to 'src/notifications/notifier_null.cpp')
-rw-r--r-- | src/notifications/notifier_null.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/notifications/notifier_null.cpp b/src/notifications/notifier_null.cpp index 356d04d..1da99fd 100644 --- a/src/notifications/notifier_null.cpp +++ b/src/notifications/notifier_null.cpp @@ -4,4 +4,6 @@ Notifier::Notifier() {} Notifier::~Notifier() {} -void Notifier::Notify(const Glib::ustring &title, const Glib::ustring &text, const Glib::ustring &default_action, const std::string &icon_path) {} +void Notifier::Notify(const Glib::ustring &id, const Glib::ustring &title, const Glib::ustring &text, const Glib::ustring &default_action, const std::string &icon_path) {} + +void Notifier::Withdraw(const Glib::ustring &id) {} |