diff options
author | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-07-27 22:46:30 +0200 |
---|---|---|
committer | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-07-27 22:46:30 +0200 |
commit | 1f0999e6a0470826ea5bbde2ba5e17758ef7751a (patch) | |
tree | 0e4e368746bc9c2cd3d8b3fa0cad092e99f542bb /src/x11 | |
parent | 14a697b272ab74058e9aa375851c13c18f07731e (diff) | |
download | glutin-1f0999e6a0470826ea5bbde2ba5e17758ef7751a.tar.gz glutin-1f0999e6a0470826ea5bbde2ba5e17758ef7751a.zip |
Implement get_position for win32 and fix interface
Diffstat (limited to 'src/x11')
-rw-r--r-- | src/x11/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/x11/mod.rs b/src/x11/mod.rs index a592bce..1c91e2d 100644 --- a/src/x11/mod.rs +++ b/src/x11/mod.rs @@ -117,7 +117,7 @@ impl Window { } } - pub fn get_position(&self) -> (uint, uint) { + pub fn get_position(&self) -> (int, int) { unimplemented!() } |