diff options
author | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-07-30 13:10:17 +0200 |
---|---|---|
committer | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-07-30 13:10:17 +0200 |
commit | 838cc2b325d85735c7db40fba389bf120b282814 (patch) | |
tree | a2e2629ce451e8b705819256e57a5973eee73686 /src/x11 | |
parent | 66f6b003d02dc83824725d4aaec0e4a1b4f0968b (diff) | |
download | glutin-838cc2b325d85735c7db40fba389bf120b282814.tar.gz glutin-838cc2b325d85735c7db40fba389bf120b282814.zip |
Window getters now return an Option in case where the Window has been closed
Diffstat (limited to 'src/x11')
-rw-r--r-- | src/x11/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/x11/mod.rs b/src/x11/mod.rs index cbb40d5..68a061b 100644 --- a/src/x11/mod.rs +++ b/src/x11/mod.rs @@ -120,7 +120,7 @@ impl Window { } } - pub fn get_position(&self) -> (int, int) { + pub fn get_position(&self) -> Option<(int, int)> { unimplemented!() } @@ -128,11 +128,11 @@ impl Window { unimplemented!() } - pub fn get_inner_size(&self) -> (uint, uint) { + pub fn get_inner_size(&self) -> Option<(uint, uint)> { unimplemented!() } - pub fn get_outer_size(&self) -> (uint, uint) { + pub fn get_outer_size(&self) -> Option<(uint, uint)> { unimplemented!() } |