diff options
Diffstat (limited to 'src/os/unix.rs')
-rw-r--r-- | src/os/unix.rs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/os/unix.rs b/src/os/unix.rs index d206351..f42b3c6 100644 --- a/src/os/unix.rs +++ b/src/os/unix.rs @@ -3,8 +3,9 @@ use libc; use Window; use platform::Window as LinuxWindow; +use WindowBuilder; -/// Additional methods on `Window` that are specific to unix. +/// Additional methods on `Window` that are specific to Unix. pub trait WindowExt { /// Returns a pointer to the `Window` object of xlib that is used by this window. /// @@ -38,3 +39,11 @@ impl WindowExt for Window { } } } + +/// Additional methods on `WindowBuilder` that are specific to Unix. +pub trait WindowBuilderExt { + +} + +impl<'a> WindowBuilderExt for WindowBuilder<'a> { +} |