Fix OS X & Win32 builds

This commit is contained in:
Bryan Bell 2015-01-12 19:45:20 -08:00
parent 95f0990074
commit 5389c73b85
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
#[cfg(feature = "headless")]
pub use self::headless::HeadlessContext;
use {CreationError, Event};
use {CreationError, Event, MouseCursor};
use CreationError::OsError;
use libc;

View file

@ -4,7 +4,7 @@ use std::ffi::CString;
use std::collections::RingBuf;
use std::sync::mpsc::Receiver;
use libc;
use {CreationError, Event};
use {CreationError, Event, MouseCursor};
use BuilderAttribs;