api/wayland: pointer events support.

This commit is contained in:
Victor Berger 2015-12-13 13:13:20 +01:00
parent 6294d3c7dd
commit 0792557f4b
3 changed files with 119 additions and 9 deletions

View file

@ -225,12 +225,12 @@ impl Window {
}
#[inline]
pub fn set_cursor(&self, cursor: MouseCursor) {
pub fn set_cursor(&self, _cursor: MouseCursor) {
// TODO
}
#[inline]
pub fn set_cursor_state(&self, state: CursorState) -> Result<(), String> {
pub fn set_cursor_state(&self, _state: CursorState) -> Result<(), String> {
// TODO
Ok(())
}