aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.rs
diff options
context:
space:
mode:
authortomaka <pierre.krieger1708@gmail.com>2015-06-17 07:36:16 +0200
committertomaka <pierre.krieger1708@gmail.com>2015-06-17 07:36:16 +0200
commit7773996d7b103e4e057cd547c0666e5d5834416f (patch)
tree292b9dc3717c10b9435b14b04b0a590b8b524ac3 /src/window.rs
parent90b28c205219df732d83e403f98abab31e6e52d4 (diff)
parent39128dd7e11ffa05eb06933cb6e3ce0e750e8806 (diff)
downloadglutin-7773996d7b103e4e057cd547c0666e5d5834416f.tar.gz
glutin-7773996d7b103e4e057cd547c0666e5d5834416f.zip
Merge pull request #488 from tomaka/rem-is-closed
Remove the is_closed function
Diffstat (limited to 'src/window.rs')
-rw-r--r--src/window.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/window.rs b/src/window.rs
index 9f8ed48..485ba58 100644
--- a/src/window.rs
+++ b/src/window.rs
@@ -225,12 +225,6 @@ impl Window {
builder.build()
}
- /// Returns true if the window has previously been closed by the user.
- #[inline]
- pub fn is_closed(&self) -> bool {
- self.window.is_closed()
- }
-
/// Modifies the title of the window.
///
/// This is a no-op if the window has already been closed.