aboutsummaryrefslogtreecommitdiffstats
path: root/src/android/mod.rs
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2015-01-28 12:43:44 -0700
committerAndrew Kelley <superjoe30@gmail.com>2015-01-28 12:43:44 -0700
commit6a27fa9d266b5e261a2b9f9e071680f06fb6d904 (patch)
treea9002a2ce95e239dc80dc53a1795b7a6da7e4b9c /src/android/mod.rs
parent1a9cf9bc5c6e9251c8035e8412edafe4bfa8869d (diff)
downloadglutin-6a27fa9d266b5e261a2b9f9e071680f06fb6d904.tar.gz
glutin-6a27fa9d266b5e261a2b9f9e071680f06fb6d904.zip
fix for rust nightly
Diffstat (limited to 'src/android/mod.rs')
-rw-r--r--src/android/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/mod.rs b/src/android/mod.rs
index 7c4f186..f406e2b 100644
--- a/src/android/mod.rs
+++ b/src/android/mod.rs
@@ -251,7 +251,7 @@ impl Window {
pub fn wait_events(&self) -> RingBuf<Event> {
use std::time::Duration;
- use std::io::timer;
+ use std::old_io::timer;
timer::sleep(Duration::milliseconds(16));
self.poll_events()
}