fix prototypes
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
This commit is contained in:
parent
7439e80334
commit
91f9f468bc
4
mouse.c
4
mouse.c
|
@ -345,7 +345,7 @@ mouse_grab_pointer(xcb_window_t window, size_t cursor)
|
||||||
/** Ungrab the Pointer
|
/** Ungrab the Pointer
|
||||||
*/
|
*/
|
||||||
static inline void
|
static inline void
|
||||||
mouse_ungrab_pointer()
|
mouse_ungrab_pointer(void)
|
||||||
{
|
{
|
||||||
xcb_ungrab_pointer(globalconf.connection, XCB_CURRENT_TIME);
|
xcb_ungrab_pointer(globalconf.connection, XCB_CURRENT_TIME);
|
||||||
}
|
}
|
||||||
|
@ -412,7 +412,7 @@ mouse_track_mouse_drag(int *x, int *y)
|
||||||
* \return The client that contains the Pointer or NULL.
|
* \return The client that contains the Pointer or NULL.
|
||||||
*/
|
*/
|
||||||
static client_t *
|
static client_t *
|
||||||
mouse_get_client_under_pointer()
|
mouse_get_client_under_pointer(void)
|
||||||
{
|
{
|
||||||
xcb_window_t root;
|
xcb_window_t root;
|
||||||
xcb_query_pointer_cookie_t query_ptr_c;
|
xcb_query_pointer_cookie_t query_ptr_c;
|
||||||
|
|
Loading…
Reference in New Issue