window: fix missing prototypes warning
Declare touch_handle_shape and touch_handle_orientation as static functions as they are local to window.c. Signed-off-by: Guillaume Champagne <champagne.guillaume.c@gmail.com>
This commit is contained in:
parent
b4bd12b738
commit
1cb09480e2
@ -3436,12 +3436,14 @@ touch_handle_cancel(void *data, struct wl_touch *wl_touch)
|
||||
}
|
||||
}
|
||||
|
||||
void touch_handle_shape(void *data, struct wl_touch *wl_touch, int32_t id,
|
||||
static void
|
||||
touch_handle_shape(void *data, struct wl_touch *wl_touch, int32_t id,
|
||||
wl_fixed_t major, wl_fixed_t minor)
|
||||
{
|
||||
}
|
||||
|
||||
void touch_handle_orientation(void *data, struct wl_touch *wl_touch, int32_t id,
|
||||
static void
|
||||
touch_handle_orientation(void *data, struct wl_touch *wl_touch, int32_t id,
|
||||
wl_fixed_t orientation)
|
||||
{
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user