Merge pull request #446 from zmike/xwindow-upstream

implement get_platform_window() return for X11
This commit is contained in:
tomaka 2015-05-12 07:13:22 +02:00
commit 3279f15f9f

View file

@ -705,7 +705,7 @@ impl Window {
} }
pub fn platform_window(&self) -> *mut libc::c_void { pub fn platform_window(&self) -> *mut libc::c_void {
unimplemented!() self.x.window as *mut libc::c_void
} }