aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/wayland
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-06-16 13:48:08 +0200
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-06-16 14:03:58 +0200
commit39128dd7e11ffa05eb06933cb6e3ce0e750e8806 (patch)
treedb182dc6912706438a39525bed7aa4e3150d4571 /src/api/wayland
parenteb73c2514eefae08a5f1850ce7ee7178b903c4cf (diff)
downloadglutin-39128dd7e11ffa05eb06933cb6e3ce0e750e8806.tar.gz
glutin-39128dd7e11ffa05eb06933cb6e3ce0e750e8806.zip
Remove the is_closed function
Diffstat (limited to 'src/api/wayland')
-rw-r--r--src/api/wayland/mod.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/api/wayland/mod.rs b/src/api/wayland/mod.rs
index b9bfa18..95996ca 100644
--- a/src/api/wayland/mod.rs
+++ b/src/api/wayland/mod.rs
@@ -184,11 +184,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);