mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-26 22:53:15 -04:00
Fix some warnings
This commit is contained in:
@@ -3,7 +3,6 @@ extern crate winit;
|
||||
#[macro_use]
|
||||
extern crate stdweb;
|
||||
#[cfg(feature = "wasm-bindgen")]
|
||||
#[macro_use]
|
||||
extern crate wasm_bindgen;
|
||||
#[cfg(feature = "wasm-bindgen")]
|
||||
extern crate web_sys;
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user