I've just tried to rebase my own patches on top of this work and noticed
the following typo:

On Thu, 27 Jun 2024 at 13:17, Akihiko Odaki <akihiko.od...@daynix.com>
wrote:

>  static void cocoa_refresh(DisplayChangeListener *dcl);
> +static void cocoa_mouse_set(DisplayChangeListener *dcl, int x, int y, int
> on);


The above prototype does not match the below definition - note the type
mismatch on the last parameter:

+static void cocoa_mouse_set(DisplayChangeListener *dcl, int x, int y, bool
> on)
> +{
> +    dispatch_async(dispatch_get_main_queue(), ^{
> +        [cocoaView setMouseX:x y:y on:on];
> +    });
> +}
>

Reply via email to