Merge pull request #13 from pnkfelix/fsk-fix-osx-dummy-impl

Fix bugs in OS X dummy impl
This commit is contained in:
tomaka 2014-08-03 18:39:00 +02:00
commit 752c721ae1
2 changed files with 4 additions and 2 deletions

View file

@ -23,8 +23,10 @@ pub use events::*;
#[cfg(windows)]
use winimpl = win32;
#[cfg(unix)]
#[cfg(target_os = "linux")]
use winimpl = x11;
#[cfg(target_os = "macos")]
use winimpl = osx;
#[cfg(target_os = "win32")]
mod win32;

View file

@ -1,6 +1,6 @@
//! Dummy implementation for OS/X to make gl-init-rs compile on this platform
use WindowBuilder;
use {Event, WindowBuilder};
pub struct Window;