summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2012-10-31 17:14:20 +0000
committerJon TURNEY <jon.turney@dronecode.org.uk>2012-11-21 14:02:29 +0000
commit92aed2eeb1599f20b46f6b292c90b550177a5d7b (patch)
treeb8060940e56c4fdcf209ebf3bbcf8fd65254a640
parent742cff5a4454662b0bc5fdd03b2959b0ab4e8cf3 (diff)
Fix parameter transposition in xcwm_window_configure()
xcwm_window_configure() has width and height parameters in the opposite order to the order used everywhere else. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
-rw-r--r--include/xcwm/window.h2
-rw-r--r--src/libxcwm/window.c2
-rw-r--r--src/xtoq/XtoqController.m6
3 files changed, 5 insertions, 5 deletions
diff --git a/include/xcwm/window.h b/include/xcwm/window.h
index 95c3ff5..4890ca4 100644
--- a/include/xcwm/window.h
+++ b/include/xcwm/window.h
@@ -150,7 +150,7 @@ xcwm_window_request_close(xcwm_window_t *window);
*/
void
xcwm_window_configure(xcwm_window_t *window, int x, int y,
- int height, int width);
+ int width, int height);
/**
* Get the window's type.
diff --git a/src/libxcwm/window.c b/src/libxcwm/window.c
index 4b24be5..308830c 100644
--- a/src/libxcwm/window.c
+++ b/src/libxcwm/window.c
@@ -188,7 +188,7 @@ _xcwm_window_remove(xcb_connection_t *conn, xcb_window_t window)
void
xcwm_window_configure(xcwm_window_t *window, int x, int y,
- int height, int width)
+ int width, int height)
{
/* Set values for xcwm_window_t */
diff --git a/src/xtoq/XtoqController.m b/src/xtoq/XtoqController.m
index c6bc564..a092f39 100644
--- a/src/xtoq/XtoqController.m
+++ b/src/xtoq/XtoqController.m
@@ -458,8 +458,8 @@
// Move the window down by the height of the OSX menu bar
xcwm_window_configure(window, windowSize->x,
windowSize->y - WINDOWBAR,
- windowSize->height,
- windowSize->width);
+ windowSize->width,
+ windowSize->height);
}
newWindow = [[XtoqWindow alloc]
@@ -580,7 +580,7 @@
int height = (int)moveFrame.size.height - WINDOWBAR;
xcwm_window_configure(window,
- x, y - height, height, width);
+ x, y - height, width, height);
[[moveWindow contentView] setNeedsDisplay: YES];
}
}