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/api/wayland | |
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/api/wayland')
-rw-r--r-- | src/api/wayland/mod.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/api/wayland/mod.rs b/src/api/wayland/mod.rs index d711110..852172b 100644 --- a/src/api/wayland/mod.rs +++ b/src/api/wayland/mod.rs @@ -185,11 +185,6 @@ impl Window { }) } - pub fn is_closed(&self) -> bool { - // TODO - false - } - pub fn set_title(&self, title: &str) { let ctitle = CString::new(title).unwrap(); self.shell_surface.set_title(&ctitle); |