Commit 904882f2 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

XCB: constify

parent 52265ccd
...@@ -41,19 +41,19 @@ ...@@ -41,19 +41,19 @@
/* FIXME we assume direct mapping between XCB and VLC */ /* FIXME we assume direct mapping between XCB and VLC */
static void HandleButtonPress (vout_display_t *vd, static void HandleButtonPress (vout_display_t *vd,
xcb_button_press_event_t *ev) const xcb_button_press_event_t *ev)
{ {
vout_display_SendEventMousePressed (vd, ev->detail - 1); vout_display_SendEventMousePressed (vd, ev->detail - 1);
} }
static void HandleButtonRelease (vout_display_t *vd, static void HandleButtonRelease (vout_display_t *vd,
xcb_button_release_event_t *ev) const xcb_button_release_event_t *ev)
{ {
vout_display_SendEventMouseReleased (vd, ev->detail - 1); vout_display_SendEventMouseReleased (vd, ev->detail - 1);
} }
static void HandleMotionNotify (vout_display_t *vd, static void HandleMotionNotify (vout_display_t *vd,
xcb_motion_notify_event_t *ev) const xcb_motion_notify_event_t *ev)
{ {
vout_display_place_t place; vout_display_place_t place;
...@@ -75,7 +75,8 @@ static void HandleMotionNotify (vout_display_t *vd, ...@@ -75,7 +75,8 @@ static void HandleMotionNotify (vout_display_t *vd,
} }
static void static void
HandleParentStructure (vout_display_t *vd, xcb_configure_notify_event_t *ev) HandleParentStructure (vout_display_t *vd,
const xcb_configure_notify_event_t *ev)
{ {
if (ev->width != vd->cfg->display.width || if (ev->width != vd->cfg->display.width ||
ev->height != vd->cfg->display.height) ev->height != vd->cfg->display.height)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment