update to rmmi
Some checks failed
ContinuousDelivery / windows (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled

This commit is contained in:
Green Sky 2024-10-06 12:49:22 +02:00
parent bb5f94446e
commit b546efe0f4
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_start(struct SolanaAPI* solana_api)
try {
auto* cr = PLUG_RESOLVE_INSTANCE_VERSIONED(Contact3Registry, "1");
auto* rmm = PLUG_RESOLVE_INSTANCE(RegistryMessageModel);
auto* rmm = PLUG_RESOLVE_INSTANCE(RegistryMessageModelI);
// static store, could be anywhere tho
// construct with fetched dependencies

View File

@ -30,7 +30,7 @@ class OurHandler : public WinToastLib::IWinToastHandler {
};
MessageN10n::MessageN10n(Contact3Registry& cr, RegistryMessageModel& rmm) : _cr(cr), _rmm(rmm) {
MessageN10n::MessageN10n(Contact3Registry& cr, RegistryMessageModelI& rmm) : _cr(cr), _rmm(rmm) {
// Register WinToast App User Model
WinToastLib::WinToast::instance()->setAppName(L"Tomato");
const auto aumi = WinToastLib::WinToast::configureAUMI(L"green", L"solanaceae", L"solanaceae_message_n10n", L"20240517");

View File

@ -4,10 +4,10 @@
class MessageN10n : public RegistryMessageModelEventI {
Contact3Registry& _cr;
RegistryMessageModel& _rmm;
RegistryMessageModelI& _rmm;
public:
MessageN10n(Contact3Registry& cr, RegistryMessageModel& rmm);
MessageN10n(Contact3Registry& cr, RegistryMessageModelI& rmm);
virtual ~MessageN10n(void);
protected: // rmm