From 1fac26adcec81ed41da9bdcd5405cf17c87e35b2 Mon Sep 17 00:00:00 2001 From: Scott Jones Date: Fri, 4 Nov 2022 09:19:37 -0700 Subject: [PATCH] Projects with a nested Windows namespace (e.g., Microsoft::Windows) fail to compile --- strings/base_xaml_component_connector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/strings/base_xaml_component_connector.h b/strings/base_xaml_component_connector.h index 16478f7a2..366e18e22 100644 --- a/strings/base_xaml_component_connector.h +++ b/strings/base_xaml_component_connector.h @@ -17,7 +17,7 @@ WINRT_EXPORT namespace winrt::Windows::UI::Xaml::Markup D::InitializeComponent(); } - void Connect(int32_t connectionId, Windows::Foundation::IInspectable const& target) + void Connect(int32_t connectionId, winrt::Windows::Foundation::IInspectable const& target) { if constexpr (m_has_connectable_base) { @@ -30,7 +30,7 @@ WINRT_EXPORT namespace winrt::Windows::UI::Xaml::Markup D::Connect(connectionId, target); } - auto GetBindingConnector(int32_t connectionId, Windows::Foundation::IInspectable const& target) + auto GetBindingConnector(int32_t connectionId, winrt::Windows::Foundation::IInspectable const& target) { if constexpr (m_has_connectable_base) {