]> git.sur5r.net Git - i3/i3/commitdiff
floating_resize: Use uint32_t
authorOrestis Floros <orestisf1993@gmail.com>
Mon, 1 Oct 2018 22:52:31 +0000 (01:52 +0300)
committerOrestis Floros <orestisf1993@gmail.com>
Mon, 12 Nov 2018 16:45:00 +0000 (18:45 +0200)
include/floating.h
src/floating.c

index 4382437bbbb8f01ef262ca99b4db0fb76ddc2dce..368183bc8fab5911dc5c0b884501ca4ba4ee0dda 100644 (file)
@@ -152,7 +152,7 @@ bool floating_reposition(Con *con, Rect newrect);
  * window's size hints.
  *
  */
-void floating_resize(Con *floating_con, int x, int y);
+void floating_resize(Con *floating_con, uint32_t x, uint32_t y);
 
 /**
  * Fixes the coordinates of the floating window whenever the window gets
index c9600eac2b3928b4d22fd6c297fd2cb9e4d40729..0c7b43b22ea868f7e679a922cc0c41b99c399986 100644 (file)
@@ -921,7 +921,7 @@ bool floating_reposition(Con *con, Rect newrect) {
  * window's size hints.
  *
  */
-void floating_resize(Con *floating_con, int x, int y) {
+void floating_resize(Con *floating_con, uint32_t x, uint32_t y) {
     DLOG("floating resize to %dx%d px\n", x, y);
     Rect *rect = &floating_con->rect;
     Con *focused_con = con_descend_focused(floating_con);