commit 7316c149b8683d820474445bae765e9f3bbc5151
parent 589bb768d9926f106656db5c1fcef0cf2535724a
Author: Dylan Araps <dylan.araps@gmail.com>
Date: Sat, 19 Oct 2019 10:55:21 +0300
sowm: use Window for window and not int
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sowm.c b/sowm.c
@@ -23,7 +23,8 @@ struct key {
typedef struct client {
struct client *next, *prev;
int f, wx, wy;
- unsigned int w, ww, wh;
+ unsigned int ww, wh;
+ Window w;
} client;
static void button_press(XEvent *e);