diff options
author | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-06-16 13:48:08 +0200 |
---|---|---|
committer | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-06-16 14:03:58 +0200 |
commit | 39128dd7e11ffa05eb06933cb6e3ce0e750e8806 (patch) | |
tree | db182dc6912706438a39525bed7aa4e3150d4571 /src/platform/linux | |
parent | eb73c2514eefae08a5f1850ce7ee7178b903c4cf (diff) | |
download | glutin-39128dd7e11ffa05eb06933cb6e3ce0e750e8806.tar.gz glutin-39128dd7e11ffa05eb06933cb6e3ce0e750e8806.zip |
Remove the is_closed function
Diffstat (limited to 'src/platform/linux')
-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 d04a1fb..795b89f 100644 --- a/src/platform/linux/api_dispatch.rs +++ b/src/platform/linux/api_dispatch.rs @@ -154,13 +154,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), |