1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:17:45 +00:00

WindowServer: Make MenuItemActivated IPC message pass identifier as u32

This is consistent with the actual storage type.
This commit is contained in:
Andreas Kling 2021-04-17 22:26:28 +02:00
parent fb80d5adda
commit b937ebd121

View file

@ -18,7 +18,7 @@ endpoint WindowClient = 4
WindowCloseRequest(i32 window_id) =|
WindowResized(i32 window_id, Gfx::IntRect new_rect) =|
MenuItemActivated(i32 menu_id, i32 identifier) =|
MenuItemActivated(i32 menu_id, u32 identifier) =|
MenuItemEntered(i32 menu_id, u32 identifier) =|
MenuItemLeft(i32 menu_id, u32 identifier) =|
MenuVisibilityDidChange(i32 menu_id, bool visible) =|