diff options
author | 2023-05-21 23:32:21 +0200 | |
---|---|---|
committer | 2023-05-21 23:32:21 +0200 | |
commit | 76f67e43cbf20122be7e82adecd35a316afcc38d (patch) | |
tree | d6494f0dcd9bfa3dff6827ba48c7823674f60fca /src/window.c | |
parent | 3312c849325d171984c9d32a0f093cd6a2e330c6 (diff) | |
download | cherry-76f67e43cbf20122be7e82adecd35a316afcc38d.tar.gz cherry-76f67e43cbf20122be7e82adecd35a316afcc38d.zip |
Change the signature for a cherry event
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index 131244f..2d14292 100644 --- a/src/window.c +++ b/src/window.c @@ -147,7 +147,7 @@ cherry_window_set_visible(CherryWindow *w, int visible) void cherry_window_set_listener(CherryWindow *w, - int (*listener)(struct CherryWindow *, int)) + int (*listener)(struct CherryWindow *, CherryEvent)) { w->listener = listener; } |