From e9eeacb9b2da92362261fc3e1c0bd13b52952597 Mon Sep 17 00:00:00 2001 From: Stephen Monaco <1782158+stevemonaco@users.noreply.github.com> Date: Sat, 3 Aug 2024 10:35:57 -0400 Subject: [PATCH] Remove internal access modifier from IWindowImpl.GetWindowsZOrder (#16562) Co-authored-by: Julien Lebosquain --- src/Avalonia.Controls/Platform/IWindowImpl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Avalonia.Controls/Platform/IWindowImpl.cs b/src/Avalonia.Controls/Platform/IWindowImpl.cs index 383515b9f9..91386c93fe 100644 --- a/src/Avalonia.Controls/Platform/IWindowImpl.cs +++ b/src/Avalonia.Controls/Platform/IWindowImpl.cs @@ -152,6 +152,6 @@ namespace Avalonia.Platform /// /// A span of windows to get their z-order /// Span to be filled with associated window z-order - internal void GetWindowsZOrder(Span windows, Span zOrder); + void GetWindowsZOrder(Span windows, Span zOrder); } }