applied nsz' textnw patch thank you

This commit is contained in:
arg@suckless.org 2008-06-09 10:26:01 +02:00
parent 077d3e435b
commit 0840c1367c
1 changed files with 6 additions and 4 deletions

10
dwm.c
View File

@ -166,7 +166,7 @@ void setmfact(const void *arg);
void setup(void); void setup(void);
void spawn(const void *arg); void spawn(const void *arg);
void tag(const void *arg); void tag(const void *arg);
uint textnw(const char *text, uint len); int textnw(const char *text, uint len);
void tile(void); void tile(void);
void togglebar(const void *arg); void togglebar(const void *arg);
void togglefloating(const void *arg); void togglefloating(const void *arg);
@ -296,7 +296,8 @@ attachstack(Client *c) {
void void
buttonpress(XEvent *e) { buttonpress(XEvent *e) {
uint i, x, mask; uint i, mask;
int x;
Client *c; Client *c;
XButtonPressedEvent *ev = &e->xbutton; XButtonPressedEvent *ev = &e->xbutton;
@ -1308,7 +1309,8 @@ setmfact(const void *arg) {
void void
setup(void) { setup(void) {
uint i, w; uint i;
int w;
XSetWindowAttributes wa; XSetWindowAttributes wa;
/* init screen */ /* init screen */
@ -1413,7 +1415,7 @@ tag(const void *arg) {
} }
} }
uint int
textnw(const char *text, uint len) { textnw(const char *text, uint len) {
XRectangle r; XRectangle r;