From e567d7f4fdaaba9f19b7ca32f37445f09ce701df Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Thu, 7 Aug 2014 18:07:48 +0200 Subject: set_position now takes ints Fix #12 --- src/x11/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/x11') diff --git a/src/x11/mod.rs b/src/x11/mod.rs index c9541b9..4c88a0b 100644 --- a/src/x11/mod.rs +++ b/src/x11/mod.rs @@ -279,7 +279,7 @@ impl Window { self.get_geometry().map(|(x, y, _, _)| (x, y)) } - pub fn set_position(&self, x: uint, y: uint) { + pub fn set_position(&self, x: int, y: int) { unsafe { ffi::XMoveWindow(self.display, self.window, x as libc::c_int, y as libc::c_int) } } -- cgit v1.2.3