diff options
| author | Pierre Krieger <pierre.krieger1708@gmail.com> | 2014-08-07 18:07:48 +0200 | 
|---|---|---|
| committer | Pierre Krieger <pierre.krieger1708@gmail.com> | 2014-08-07 18:07:48 +0200 | 
| commit | e567d7f4fdaaba9f19b7ca32f37445f09ce701df (patch) | |
| tree | fbab6809d9e94286e49b1d250ed367e4281335c3 /src/osx | |
| parent | 3f69cbb189a7f54d7f4389a2b8a71f0c23dfd04d (diff) | |
| download | glutin-e567d7f4fdaaba9f19b7ca32f37445f09ce701df.tar.gz glutin-e567d7f4fdaaba9f19b7ca32f37445f09ce701df.zip  | |
set_position now takes ints
Fix #12
Diffstat (limited to 'src/osx')
| -rw-r--r-- | src/osx/mod.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osx/mod.rs b/src/osx/mod.rs index f846cf4..deceaf8 100644 --- a/src/osx/mod.rs +++ b/src/osx/mod.rs @@ -41,7 +41,7 @@ impl Window {          unimplemented!()      } -    pub fn set_position(&self, _x: uint, _y: uint) { +    pub fn set_position(&self, _x: int, _y: int) {          unimplemented!()      }  | 
