File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -619,15 +619,17 @@ WINRT_EXPORT namespace winrt
619619 call_changed (Windows::Foundation::Collections::CollectionChange::Reset, impl::empty_value<K>());
620620 }
621621
622- private:
623-
624- event<Windows::Foundation::Collections::MapChangedEventHandler<K, V>> m_changed;
622+ protected:
625623
626624 void call_changed (Windows::Foundation::Collections::CollectionChange const change, K const & key)
627625 {
628626 m_changed (static_cast <D const &>(*this ), make<args>(change, key));
629627 }
630628
629+ private:
630+
631+ event<Windows::Foundation::Collections::MapChangedEventHandler<K, V>> m_changed;
632+
631633 struct args : implements<args, Windows::Foundation::Collections::IMapChangedEventArgs<K>>
632634 {
633635 args (Windows::Foundation::Collections::CollectionChange const change, K const & key) noexcept :
You can’t perform that action at this time.
0 commit comments