comparison view.c @ 402:c7d5ff57998d

removed unused vars
author Anselm R. Garbe <arg@10kloc.org>
date Mon, 04 Sep 2006 12:23:41 +0200
parents 1eb2eb405653
children c6ffcc201229
comparison
equal deleted inserted replaced
401:1eb2eb405653 402:c7d5ff57998d
55 } 55 }
56 56
57 void 57 void
58 dofloat(Arg *arg) 58 dofloat(Arg *arg)
59 { 59 {
60 Client *c, *fc; 60 Client *c;
61 61
62 maximized = False; 62 maximized = False;
63 63
64 for(c = clients; c; c = c->next) { 64 for(c = clients; c; c = c->next) {
65 if(isvisible(c)) { 65 if(isvisible(c)) {
75 75
76 void 76 void
77 dotile(Arg *arg) 77 dotile(Arg *arg)
78 { 78 {
79 int h, i, n, w; 79 int h, i, n, w;
80 Client *c, *fc; 80 Client *c;
81 81
82 maximized = False; 82 maximized = False;
83 83
84 w = sw - mw; 84 w = sw - mw;
85 for(n = 0, c = clients; c; c = c->next) 85 for(n = 0, c = clients; c; c = c->next)