diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-10-25 19:39:19 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-10-25 19:39:19 +0000 |
| commit | 5a1ad84c0583ff4dd8df01e63488e9c04daf6eab (patch) | |
| tree | 4c34b847a7a977352a9190810d989048825cdf58 /openbox/client.c | |
| parent | 7ed0e10404e80149db3e8ef7f32a6281fcd17d9d (diff) | |
use gpointer for void*
Diffstat (limited to 'openbox/client.c')
| -rw-r--r-- | openbox/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/client.c b/openbox/client.c index de66ac23..fca7401c 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -134,7 +134,7 @@ void client_set_list() } /* - void client_foreach_transient(ObClient *self, ObClientForeachFunc func, void *data) + void client_foreach_transient(ObClient *self, ObClientForeachFunc func, gpointer data) { GSList *it; @@ -144,7 +144,7 @@ void client_set_list() } } - void client_foreach_ancestor(ObClient *self, ObClientForeachFunc func, void *data) + void client_foreach_ancestor(ObClient *self, ObClientForeachFunc func, gpointer data) { if (self->transient_for) { if (self->transient_for != OB_TRAN_GROUP) { |
