From 5389c73b852d82ddfbc66ffacdf5620f431275dd Mon Sep 17 00:00:00 2001 From: Bryan Bell Date: Mon, 12 Jan 2015 19:45:20 -0800 Subject: [PATCH] Fix OS X & Win32 builds --- src/osx/mod.rs | 2 +- src/win32/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osx/mod.rs b/src/osx/mod.rs index 20522866..7b362ba2 100644 --- a/src/osx/mod.rs +++ b/src/osx/mod.rs @@ -1,7 +1,7 @@ #[cfg(feature = "headless")] pub use self::headless::HeadlessContext; -use {CreationError, Event}; +use {CreationError, Event, MouseCursor}; use CreationError::OsError; use libc; diff --git a/src/win32/mod.rs b/src/win32/mod.rs index 0d72c17f..463d5fef 100644 --- a/src/win32/mod.rs +++ b/src/win32/mod.rs @@ -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;