Browse Source

rename var

pull/1977/head
Dan Walmsley 8 years ago
parent
commit
4d3fcd9cbf
  1. 8
      src/Avalonia.Native.OSX/window.mm

8
src/Avalonia.Native.OSX/window.mm

@ -115,11 +115,11 @@ public:
auto frame = [Window frame]; auto frame = [Window frame];
AvnPoint bottomLeft; AvnPoint topLeft;
bottomLeft.X = frame.origin.x; topLeft.X = frame.origin.x;
bottomLeft.Y = frame.origin.y + frame.size.height; topLeft.Y = frame.origin.y + frame.size.height;
*ret = ConvertPointY(bottomLeft); *ret = ConvertPointY(topLeft);
return S_OK; return S_OK;
} }

Loading…
Cancel
Save