Cocoa: Fix multiple methods warning

This fixes a warning due to us using bare ids and
NSCollectionLayoutAnchor having a message with the same name.
This commit is contained in:
Camilla Löwy 2019-11-06 23:46:05 +01:00
parent c819f27ce3
commit bac15f9449

View File

@ -816,7 +816,7 @@ static GLFWbool createNativeWindow(_GLFWwindow* window,
[window->ns.object setLevel:NSMainMenuWindowLevel + 1];
else
{
[window->ns.object center];
[(NSWindow*) window->ns.object center];
_glfw.ns.cascadePoint =
NSPointToCGPoint([window->ns.object cascadeTopLeftFromPoint:
NSPointFromCGPoint(_glfw.ns.cascadePoint)]);