screen-cast/window/src: Fix signal handler types

Should be gulong, not unsigned long.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2393>
This commit is contained in:
Jonas Ådahl 2022-04-29 21:05:44 +02:00 committed by Marge Bot
parent cecf4cd87c
commit c5410b61d2

View File

@ -35,10 +35,10 @@ struct _MetaScreenCastWindowStreamSrc
MetaScreenCastWindow *screen_cast_window;
unsigned long screen_cast_window_damaged_handler_id;
unsigned long screen_cast_window_destroyed_handler_id;
unsigned long position_invalidated_handler_id;
unsigned long cursor_changed_handler_id;
gulong screen_cast_window_damaged_handler_id;
gulong screen_cast_window_destroyed_handler_id;
gulong position_invalidated_handler_id;
gulong cursor_changed_handler_id;
gboolean cursor_bitmap_invalid;
};