From 8042442b8f7161769ae9642b30df7f2390a8b620 Mon Sep 17 00:00:00 2001 From: jvvv Date: Sun, 15 Dec 2013 00:28:29 -0500 Subject: [PATCH] Replace struct rect with xcb_rectangle_t --- bar.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/bar.c b/bar.c index 3ed40d9..f71ed47 100644 --- a/bar.c +++ b/bar.c @@ -389,13 +389,6 @@ get_xinerama_outputs(xcb_window_t w, screen_t **spp) return num; } -struct rect { - uint32_t x; - uint32_t y; - uint32_t width; - uint32_t height; -}; - int get_randr_outputs(xcb_window_t w, screen_t **spp) { @@ -415,7 +408,7 @@ get_randr_outputs(xcb_window_t w, screen_t **spp) num = xcb_randr_get_screen_resources_current_outputs_length(rres_reply); outputs = xcb_randr_get_screen_resources_current_outputs(rres_reply); - struct rect temp[num]; + xcb_rectangle_t temp[num]; /* use all outputs connected to a crtc */ for (i = 0; i < num; i++) {