about summary refs log tree commit diff stats
path: root/client.c
diff options
context:
space:
mode:
authorarg@10ksloc.org <unknown>2006-08-01 14:46:01 +0200
committerarg@10ksloc.org <unknown>2006-08-01 14:46:01 +0200
commit77f8c075c48e510e064b8f0b7b823a7e1f9f44b7 (patch)
treefb47710d61c0ecd97ec622aab8d3d9cdcd627260 /client.c
parent33b4821cd69ed4c0a9af58f0af96de430277a08a (diff)
downloaddwm-77f8c075c48e510e064b8f0b7b823a7e1f9f44b7.tar.gz
uppercasing all define'd values (uppercase-prefixed should only be enum field qualifiers)
Diffstat (limited to 'client.c')
-rw-r--r--client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/client.c b/client.c
index 646bcc1..7bc6772 100644
--- a/client.c
+++ b/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)
/div>
79328f9a ^








dd9ba09a ^
79328f9a ^





dd9ba09a ^

79328f9a ^






dd9ba09a ^
79328f9a ^



f2cd405d ^
79328f9a ^
dd9ba09a ^

79328f9a ^
f2cd405d ^
79328f9a ^




dd9ba09a ^
79328f9a ^





dd9ba09a ^
79328f9a ^






dd9ba09a ^
79328f9a ^








27ef047a ^




9b16f190 ^
27ef047a ^
9b16f190 ^
27ef047a ^
9b16f190 ^


27ef047a ^





79328f9a ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109