diff options
| author | tomaka <pierre.krieger1708@gmail.com> | 2015-06-17 07:36:16 +0200 |
|---|---|---|
| committer | tomaka <pierre.krieger1708@gmail.com> | 2015-06-17 07:36:16 +0200 |
| commit | 7773996d7b103e4e057cd547c0666e5d5834416f (patch) | |
| tree | 292b9dc3717c10b9435b14b04b0a590b8b524ac3 /src/platform | |
| parent | 90b28c205219df732d83e403f98abab31e6e52d4 (diff) | |
| parent | 39128dd7e11ffa05eb06933cb6e3ce0e750e8806 (diff) | |
| download | glutin-7773996d7b103e4e057cd547c0666e5d5834416f.tar.gz glutin-7773996d7b103e4e057cd547c0666e5d5834416f.zip | |
Merge pull request #488 from tomaka/rem-is-closed
Remove the is_closed function
Diffstat (limited to 'src/platform')
| -rw-r--r-- | src/platform/linux/api_dispatch.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/platform/linux/api_dispatch.rs b/src/platform/linux/api_dispatch.rs index d21cac3..b2cd741 100644 --- a/src/platform/linux/api_dispatch.rs +++ b/src/platform/linux/api_dispatch.rs @@ -155,13 +155,6 @@ impl Window { } } - pub fn is_closed(&self) -> bool { - match self { - &Window::X(ref w) => w.is_closed(), - &Window::Wayland(ref w) => w.is_closed() - } - } - pub fn set_title(&self, title: &str) { match self { &Window::X(ref w) => w.set_title(title), |
