about summary refs log tree commit diff stats
path: root/event.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-10-06 13:06:37 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-10-06 13:06:37 +0200
commit5983c00b9508d48331b2c57f2c88ea09a8feb291 (patch)
tree73898ee9823dae41f7b481a533b541651d56e226 /event.c
parent6651dd7fd9e8e95cfc6c472f1adfeff41735d798 (diff)
downloaddwm-5983c00b9508d48331b2c57f2c88ea09a8feb291.tar.gz
do* has no Arg arument anymore (never called directly) 1.9
Diffstat (limited to 'event.c')
-rw-r--r--event.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/event.c b/event.c
index e959917..7f040e2 100644
--- a/event.c
+++ b/event.c
@@ -179,7 +179,7 @@ configurerequest(XEvent *e) {
 				ban(c);
 		}
 		else
-			arrange(NULL);
+			arrange();
 	}
 	else {
 		wc.x = ev->x;
@@ -304,7 +304,7 @@ propertynotify(XEvent *e) {
 			case XA_WM_TRANSIENT_FOR:
 				XGetTransientForHint(dpy, c->win, &trans);
 				if(!c->isfloat && (c->isfloat = (trans != 0)))
-					arrange(NULL);
+					arrange();
 				break;
 			case XA_WM_NORMAL_HINTS:
 				updatesize(c);
/a> 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217