comparison event.c @ 454:ffb462fb7903

small change to comments, renamed two set* functions in client.c into update*
author Anselm R. Garbe <arg@10kloc.org>
date Mon, 11 Sep 2006 10:00:56 +0200
parents 052657ff2e7b
children 9d23330a5268
comparison
equal deleted inserted replaced
453:f30f937f9e52 454:ffb462fb7903
341 XGetTransientForHint(dpy, c->win, &trans); 341 XGetTransientForHint(dpy, c->win, &trans);
342 if(!c->isfloat && (c->isfloat = (trans != 0))) 342 if(!c->isfloat && (c->isfloat = (trans != 0)))
343 arrange(NULL); 343 arrange(NULL);
344 break; 344 break;
345 case XA_WM_NORMAL_HINTS: 345 case XA_WM_NORMAL_HINTS:
346 setsize(c); 346 updatesize(c);
347 break; 347 break;
348 } 348 }
349 if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) { 349 if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
350 settitle(c); 350 updatetitle(c);
351 drawtitle(c); 351 drawtitle(c);
352 } 352 }
353 } 353 }
354 } 354 }
355 355