summaryrefslogtreecommitdiff
path: root/openbox/client.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-05-17 01:45:00 +0000
committerDana Jansens <danakj@orodu.net>2007-05-17 01:45:00 +0000
commitb1076c93330d98d93bf6b775f90dca78daf3a1a3 (patch)
tree5b648d8337f98748be34e13c6c1a0eef25f8883f /openbox/client.h
parentcfce6b8f4d432f804f1e6d5c972a35df56ec0df0 (diff)
rename client_configure_full to client_configure
Diffstat (limited to 'openbox/client.h')
-rw-r--r--openbox/client.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/openbox/client.h b/openbox/client.h
index 3dcf62fc..2cc64a5c 100644
--- a/openbox/client.h
+++ b/openbox/client.h
@@ -369,12 +369,11 @@ void client_convert_gravity(ObClient *self, gint gravity, gint *x, gint *y,
gint w, gint h);
#define client_move(self, x, y) \
- client_configure_full(self, x, y, self->area.width, self->area.height, \
- TRUE, TRUE)
+ client_configure(self, x, y, self->area.width, self->area.height, TRUE, TRUE)
#define client_resize(self, w, h) \
- client_configure_full(self, self->area.x, self->area.y, w, h, TRUE, TRUE)
+ client_configure(self, self->area.x, self->area.y, w, h, TRUE, TRUE)
#define client_move_resize(self, x, y, w, h) \
- client_configure_full(self, x, y, w, h, TRUE, TRUE)
+ client_configure(self, x, y, w, h, TRUE, TRUE)
/*! Figure out where a window will end up and what size it will be if you
told it to move/resize to these coordinates.
@@ -415,8 +414,8 @@ void client_try_configure(ObClient *self, gint *x, gint *y, gint *w, gint *h,
@param force_reply Send a ConfigureNotify to the client regardless of if
the position changed.
*/
-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);
void client_reconfigure(ObClient *self);