Merge pull request #3478 from laytan/fix-send-event-proc-signature

sys/darwin/foundation: fix Application->sendEvent signature
This commit is contained in:
gingerBill
2024-04-25 12:32:10 +01:00
committed by GitHub

View File

@@ -132,7 +132,7 @@ Application_nextEventMatchingMask :: proc "c" (self: ^Application, mask: EventMa
@(objc_type=Application, objc_name="sendEvent")
Application_sendEvent :: proc "c" (self: ^Application, event: ^Event) {
msgSend(Event, self, "sendEvent:", event)
msgSend(nil, self, "sendEvent:", event)
}
@(objc_type=Application, objc_name="updateWindows")
Application_updateWindows :: proc "c" (self: ^Application) {