about summary refs log tree commit diff stats
path: root/client.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-09-11 10:00:56 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-09-11 10:00:56 +0200
commitd2d394eccf2d23eb264a321fe187bb2084beb4b9 (patch)
tree071e91346653a8d6973e0e8398d9922157fd5ad2 /client.c
parent438beeabde5e56f8d85e0dd143721e9372e3eab4 (diff)
downloaddwm-d2d394eccf2d23eb264a321fe187bb2084beb4b9.tar.gz
small change to comments, renamed two set* functions in client.c into update*
Diffstat (limited to 'client.c')
-rw-r--r--client.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/client.c b/client.c
index b6caa93..a794f44 100644
--- a/client.c
+++ b/client.c
@@ -223,7 +223,7 @@ manage(Window w, XWindowAttributes *wa)
 	c->th = bh;
 
 	c->border = 0;
-	setsize(c);
+	updatesize(c);
 
 	if(c->x + c->w + 2 > sw)
 		c->x = sw - c->w - 2;
@@ -260,7 +260,7 @@ manage(Window w, XWindowAttributes *wa)
 	c->snext = stack;
 	stack = clients = c;
 
-	settitle(c);
+	updatetitle(c);
 	ban(c);
 	XMapWindow(dpy, c->win);
 	XMapWindow(dpy, c->twin);
@@ -309,7 +309,7 @@ resize(Client *c, Bool sizehints, Corner sticky)
 }
 
 void
-setsize(Client *c)
+updatesize(Client *c)
 {
 	long msize;
 	XSizeHints size;
@@ -348,7 +348,7 @@ setsize(Client *c)
 }
 
 void
-settitle(Client *c)
+updatetitle(Client *c)
 {
 	char **list = NULL;
 	int n;
hut <hut@lavabit.com> 2010-04-13 17:57:46 +0200 committer hut <hut@lavabit.com> 2010-04-13 17:57:46 +0200 dirarg: added unit test and almost working implementaiton' href='/akspecs/ranger/commit/test/tc_direction.py?h=v1.1.1&id=447cbcd65588eafdb85b407750602c0fdd591ef4'>447cbcd6 ^
7a2665c2 ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88