Xinqi Bao's Git
projects
/
dwm.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
df9fd28
)
forgot an extern declaration
author
Anselm R. Garbe <
[email protected]
>
Mon, 19 Feb 2007 15:04:38 +0000
(16:04 +0100)
committer
Anselm R. Garbe <
[email protected]
>
Mon, 19 Feb 2007 15:04:38 +0000
(16:04 +0100)
dwm.h
patch
|
blob
|
history
screen.c
patch
|
blob
|
history
diff --git
a/dwm.h
b/dwm.h
index
a96eec1
..
a4dc2ba
100644
(file)
--- a/
dwm.h
+++ b/
dwm.h
@@
-105,7
+105,7
@@
extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored
extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */
extern void killclient(Arg *arg); /* kill c nicely */
extern void manage(Window w, XWindowAttributes *wa); /* manage new client */
extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */
extern void killclient(Arg *arg); /* kill c nicely */
extern void manage(Window w, XWindowAttributes *wa); /* manage new client */
-
Client *nexttiled(Client *c);
/* returns tiled successor of c */
+
extern Client *nexttiled(Client *c);
/* returns tiled successor of c */
extern void resize(Client *c, int x, int y,
int w, int h, Bool sizehints); /* resize with given coordinates c*/
extern void updatesizehints(Client *c); /* update the size hint variables of c */
extern void resize(Client *c, int x, int y,
int w, int h, Bool sizehints); /* resize with given coordinates c*/
extern void updatesizehints(Client *c); /* update the size hint variables of c */
diff --git
a/screen.c
b/screen.c
index
041cac7
..
4e97f09
100644
(file)
--- a/
screen.c
+++ b/
screen.c
@@
-83,6
+83,7
@@
dofloat(void) {
}
restack();
}
}
restack();
}
+
void
dotile(void) {
unsigned int i, n, nx, ny, nw, nh, mw, mh, tw, th;
void
dotile(void) {
unsigned int i, n, nx, ny, nw, nh, mw, mh, tw, th;