1
0
mirror of https://github.com/dylanaraps/sowm.git synced 2025-07-27 10:11:57 -07:00

sowm: use Window for window and not int

This commit is contained in:
Dylan Araps
2019-10-19 10:55:21 +03:00
parent 589bb768d9
commit 7316c149b8

3
sowm.c

@@ -23,7 +23,8 @@ struct key {
typedef struct client { typedef struct client {
struct client *next, *prev; struct client *next, *prev;
int f, wx, wy; int f, wx, wy;
unsigned int w, ww, wh; unsigned int ww, wh;
Window w;
} client; } client;
static void button_press(XEvent *e); static void button_press(XEvent *e);