Fix some warnings
This commit is contained in:
parent
91a511ba8c
commit
7de1261555
3 changed files with 2 additions and 3 deletions
|
|
@ -265,7 +265,7 @@ fn add_event<T: 'static, E, F>(
|
|||
event_ref.cancel_bubble();
|
||||
|
||||
handler(&elrs, event);
|
||||
}) as Box<FnMut(E)>);
|
||||
}) as Box<dyn FnMut(E)>);
|
||||
|
||||
target.add_event_listener_with_callback(event, &closure.as_ref().unchecked_ref());
|
||||
closure.forget(); // TODO: don't leak this.
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ impl Window {
|
|||
let canvas: HtmlCanvasElement = element.unchecked_into();
|
||||
document().body()
|
||||
.ok_or_else(|| os_error!(OsError("Failed to find body node".to_owned())))?
|
||||
.append_child(&canvas);
|
||||
.append_child(&canvas).map_err(|_| os_error!(OsError("Failed to append canvas".to_owned())))?;
|
||||
|
||||
register(&target.runner, &canvas);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue