Browse Source
Remove internal access modifier from IWindowImpl.GetWindowsZOrder (#16562)
Co-authored-by: Julien Lebosquain <julien@lebosquain.net>
pull/16593/head
Stephen Monaco
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
src/Avalonia.Controls/Platform/IWindowImpl.cs
|
|
|
@ -152,6 +152,6 @@ namespace Avalonia.Platform |
|
|
|
/// </summary>
|
|
|
|
/// <param name="windows">A span of windows to get their z-order</param>
|
|
|
|
/// <param name="zOrder">Span to be filled with associated window z-order</param>
|
|
|
|
internal void GetWindowsZOrder(Span<Window> windows, Span<long> zOrder); |
|
|
|
void GetWindowsZOrder(Span<Window> windows, Span<long> zOrder); |
|
|
|
} |
|
|
|
} |
|
|
|
|