From d33c138164d069f025439f97920771f1f8c7775e Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Thu, 2 Apr 2015 22:04:17 +0200 Subject: Rustup --- examples/multiwindow.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'examples/multiwindow.rs') diff --git a/examples/multiwindow.rs b/examples/multiwindow.rs index a7680b8..9256555 100644 --- a/examples/multiwindow.rs +++ b/examples/multiwindow.rs @@ -6,7 +6,7 @@ extern crate android_glue; extern crate glutin; -use std::thread::Thread; +use std::thread; mod support; @@ -22,15 +22,15 @@ fn main() { let window2 = glutin::Window::new().unwrap(); let window3 = glutin::Window::new().unwrap(); - let t1 = Thread::scoped(move || { + let t1 = thread::scoped(move || { run(window1, (0.0, 1.0, 0.0, 1.0)); }); - let t2 = Thread::scoped(move || { + let t2 = thread::scoped(move || { run(window2, (0.0, 0.0, 1.0, 1.0)); }); - let t3 = Thread::scoped(move || { + let t3 = thread::scoped(move || { run(window3, (1.0, 0.0, 0.0, 1.0)); }); -- cgit v1.2.3