Browse Source

make class internal.

pull/3849/head
Dan Walmsley 6 years ago
parent
commit
4d6166e3cc
  1. 4
      src/Windows/Avalonia.Win32/Win32TypeExtensions.cs

4
src/Windows/Avalonia.Win32/Win32TypeExtensions.cs

@ -2,9 +2,9 @@
namespace Avalonia.Win32 namespace Avalonia.Win32
{ {
public static class Win32TypeExtensions internal static class Win32TypeExtensions
{ {
internal static PixelRect ToPixelRect(this RECT rect) public static PixelRect ToPixelRect(this RECT rect)
{ {
return new PixelRect(rect.left, rect.top, rect.right - rect.left, return new PixelRect(rect.left, rect.top, rect.right - rect.left,
rect.bottom - rect.top); rect.bottom - rect.top);

Loading…
Cancel
Save