comparison draw.c @ 487:be4f90c03582

applied Jukkas patch
author arg@mmvi
date Mon, 25 Sep 2006 08:21:51 +0200
parents 8d564b9e3cd4
children 3a812750f983
comparison
equal deleted inserted replaced
486:8d564b9e3cd4 487:be4f90c03582
78 } 78 }
79 79
80 /* extern */ 80 /* extern */
81 81
82 void 82 void
83 drawall() { 83 drawall(void) {
84 Client *c; 84 Client *c;
85 85
86 for(c = clients; c; c = getnext(c->next)) 86 for(c = clients; c; c = getnext(c->next))
87 drawtitle(c); 87 drawtitle(c);
88 drawstatus(); 88 drawstatus();
89 } 89 }
90 90
91 void 91 void
92 drawstatus() { 92 drawstatus(void) {
93 int i, x; 93 int i, x;
94 94
95 dc.x = dc.y = 0; 95 dc.x = dc.y = 0;
96 96
97 for(i = 0; i < ntags; i++) { 97 for(i = 0; i < ntags; i++) {