1
0
Fork 0
forked from wry/wry

all: fix clippy lints

This commit is contained in:
Julian Orth 2022-11-03 19:26:35 +01:00
parent 729e47a756
commit e61d6ab074
4 changed files with 6 additions and 6 deletions

View file

@ -1155,7 +1155,7 @@ impl Node for WlSurface {
}
fn node_on_axis_event(self: Rc<Self>, seat: &Rc<WlSeatGlobal>, event: &PendingScroll) {
seat.scroll_surface(&*self, event);
seat.scroll_surface(&self, event);
}
fn node_on_focus(self: Rc<Self>, seat: &Rc<WlSeatGlobal>) {
@ -1179,7 +1179,7 @@ impl Node for WlSurface {
}
fn node_on_pointer_motion(self: Rc<Self>, seat: &Rc<WlSeatGlobal>, x: Fixed, y: Fixed) {
seat.motion_surface(&*self, x, y)
seat.motion_surface(&self, x, y)
}
fn node_on_pointer_relative_motion(