aboutsummaryrefslogtreecommitdiffstats
path: root/src/x11
diff options
context:
space:
mode:
authortomaka <pierre.krieger1708@gmail.com>2015-04-03 19:18:14 +0200
committertomaka <pierre.krieger1708@gmail.com>2015-04-03 19:18:14 +0200
commit36c927c7a4559f0ef9ff2395e02ee3eb1ad41dfc (patch)
treed82e8f05a783253e4ed1935937f4c5875bc2e85e /src/x11
parent424cc5ea4909e9e57a1d14b6ad6a397e992ab6fb (diff)
parentb99309bee20a23d118a3b58a8f73d28a62778c84 (diff)
downloadglutin-36c927c7a4559f0ef9ff2395e02ee3eb1ad41dfc.tar.gz
glutin-36c927c7a4559f0ef9ff2395e02ee3eb1ad41dfc.zip
Merge pull request #356 from tomaka/rustup
Remove deprecated functions
Diffstat (limited to 'src/x11')
-rw-r--r--src/x11/window/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/x11/window/mod.rs b/src/x11/window/mod.rs
index fa8f91c..3820bd4 100644
--- a/src/x11/window/mod.rs
+++ b/src/x11/window/mod.rs
@@ -7,7 +7,7 @@ use std::cell::Cell;
use std::sync::atomic::AtomicBool;
use std::collections::VecDeque;
use super::ffi;
-use std::sync::{Arc, Mutex, Once, ONCE_INIT, Weak};
+use std::sync::{Arc, Mutex, Once, ONCE_INIT};
use Api;
use CursorState;