1
0
Fork 0
forked from wry/wry

autocommit 2022-02-02 01:20:49 CET

This commit is contained in:
Julian Orth 2022-02-02 01:20:49 +01:00
parent 2dbe3ba732
commit 65a7a55b82
8 changed files with 105 additions and 17 deletions

View file

@ -127,11 +127,15 @@ pub trait Node {
let _ = y;
}
fn pointer_untarget(&self, seat: &Rc<WlSeatGlobal>) {
let _ = seat;
}
fn pointer_target(&self, seat: &Rc<WlSeatGlobal>) {
let _ = seat;
}
fn motion(&self, seat: &WlSeatGlobal, x: Fixed, y: Fixed) {
fn motion(&self, seat: &Rc<WlSeatGlobal>, x: Fixed, y: Fixed) {
let _ = seat;
let _ = x;
let _ = y;