diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-17 01:45:00 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-17 01:45:00 +0000 |
| commit | b1076c93330d98d93bf6b775f90dca78daf3a1a3 (patch) | |
| tree | 5b648d8337f98748be34e13c6c1a0eef25f8883f /openbox/client.c | |
| parent | cfce6b8f4d432f804f1e6d5c972a35df56ec0df0 (diff) | |
rename client_configure_full to client_configure
Diffstat (limited to 'openbox/client.c')
| -rw-r--r-- | openbox/client.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/openbox/client.c b/openbox/client.c index 57d39249..f1cbdc8d 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -407,9 +407,9 @@ void client_manage(Window window) do this after adjusting the frame. otherwise it gets all weird and clients don't work right */ - client_configure_full(self, self->area.x, self->area.y, - self->area.width, self->area.height, - FALSE, TRUE); + client_configure(self, self->area.x, self->area.y, + self->area.width, self->area.height, + FALSE, TRUE); /* do this after the window is placed, so the premax/prefullscreen numbers won't be all wacko!! @@ -1771,8 +1771,8 @@ void client_reconfigure(ObClient *self) /* by making this pass FALSE for user, we avoid the emacs event storm where every configurenotify causes an update in its normal hints, i think this is generally what we want anyways... */ - client_configure_full(self, self->area.x, self->area.y, - self->area.width, self->area.height, FALSE, TRUE); + client_configure(self, self->area.x, self->area.y, + self->area.width, self->area.height, FALSE, TRUE); } void client_update_wmhints(ObClient *self) @@ -2704,8 +2704,8 @@ void client_try_configure(ObClient *self, gint *x, gint *y, gint *w, gint *h, } -void client_configure_full(ObClient *self, gint x, gint y, gint w, gint h, - gboolean user, gboolean final) +void client_configure(ObClient *self, gint x, gint y, gint w, gint h, + gboolean user, gboolean final) { gint oldw, oldh; gboolean send_resize_client; |
