uppercasing all define'd values (uppercase-prefixed should only be enum field qualifiers)
This commit is contained in:
parent
33b4821cd6
commit
77f8c075c4
4 changed files with 18 additions and 18 deletions
6
client.c
6
client.c
|
@ -244,11 +244,11 @@ manage(Window w, XWindowAttributes *wa)
|
|||
c->next = clients;
|
||||
clients = c;
|
||||
|
||||
XGrabButton(dpy, Button1, MODKEY, c->win, False, ButtonMask,
|
||||
XGrabButton(dpy, Button1, MODKEY, c->win, False, BUTTONMASK,
|
||||
GrabModeAsync, GrabModeSync, None, None);
|
||||
XGrabButton(dpy, Button2, MODKEY, c->win, False, ButtonMask,
|
||||
XGrabButton(dpy, Button2, MODKEY, c->win, False, BUTTONMASK,
|
||||
GrabModeAsync, GrabModeSync, None, None);
|
||||
XGrabButton(dpy, Button3, MODKEY, c->win, False, ButtonMask,
|
||||
XGrabButton(dpy, Button3, MODKEY, c->win, False, BUTTONMASK,
|
||||
GrabModeAsync, GrabModeSync, None, None);
|
||||
|
||||
if(!c->isfloat)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue