From 3a51c0077bc911e30512212f10322c8c0d897700 Mon Sep 17 00:00:00 2001 From: Green Sky Date: Mon, 10 Mar 2025 23:12:34 +0100 Subject: [PATCH] add new method to fully implement handler --- src/message_n10n.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/message_n10n.cpp b/src/message_n10n.cpp index ca74983..a7ff839 100644 --- a/src/message_n10n.cpp +++ b/src/message_n10n.cpp @@ -24,6 +24,10 @@ class OurHandler : public WinToastLib::IWinToastHandler { std::cout << "action called\n"; } + void toastActivated(const char* response) const override { + std::cout << "action called\n"; + } + void toastDismissed(WinToastDismissalReason state) const override { }