mirror of
https://github.com/leahneukirchen/cwm.git
synced 2023-08-10 21:13:12 +03:00
rename {h,v}max functions for consistency; from Jan Stary
This commit is contained in:
parent
579f981718
commit
6d123cd96d
4
calmwm.h
4
calmwm.h
@ -320,7 +320,7 @@ struct client_ctx *client_find(Window);
|
|||||||
void client_freeze(struct client_ctx *);
|
void client_freeze(struct client_ctx *);
|
||||||
void client_getsizehints(struct client_ctx *);
|
void client_getsizehints(struct client_ctx *);
|
||||||
void client_hide(struct client_ctx *);
|
void client_hide(struct client_ctx *);
|
||||||
void client_horizmaximize(struct client_ctx *);
|
void client_hmaximize(struct client_ctx *);
|
||||||
void client_leave(struct client_ctx *);
|
void client_leave(struct client_ctx *);
|
||||||
void client_lower(struct client_ctx *);
|
void client_lower(struct client_ctx *);
|
||||||
void client_map(struct client_ctx *);
|
void client_map(struct client_ctx *);
|
||||||
@ -337,7 +337,7 @@ void client_setname(struct client_ctx *);
|
|||||||
int client_snapcalc(int, int, int, int, int);
|
int client_snapcalc(int, int, int, int, int);
|
||||||
void client_transient(struct client_ctx *);
|
void client_transient(struct client_ctx *);
|
||||||
void client_unhide(struct client_ctx *);
|
void client_unhide(struct client_ctx *);
|
||||||
void client_vertmaximize(struct client_ctx *);
|
void client_vmaximize(struct client_ctx *);
|
||||||
void client_warp(struct client_ctx *);
|
void client_warp(struct client_ctx *);
|
||||||
|
|
||||||
void group_alltoggle(struct screen_ctx *);
|
void group_alltoggle(struct screen_ctx *);
|
||||||
|
4
client.c
4
client.c
@ -298,7 +298,7 @@ resize:
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
client_vertmaximize(struct client_ctx *cc)
|
client_vmaximize(struct client_ctx *cc)
|
||||||
{
|
{
|
||||||
struct screen_ctx *sc = cc->sc;
|
struct screen_ctx *sc = cc->sc;
|
||||||
struct geom xine;
|
struct geom xine;
|
||||||
@ -339,7 +339,7 @@ resize:
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
client_horizmaximize(struct client_ctx *cc)
|
client_hmaximize(struct client_ctx *cc)
|
||||||
{
|
{
|
||||||
struct screen_ctx *sc = cc->sc;
|
struct screen_ctx *sc = cc->sc;
|
||||||
struct geom xine;
|
struct geom xine;
|
||||||
|
4
kbfunc.c
4
kbfunc.c
@ -452,13 +452,13 @@ kbfunc_client_maximize(struct client_ctx *cc, union arg *arg)
|
|||||||
void
|
void
|
||||||
kbfunc_client_vmaximize(struct client_ctx *cc, union arg *arg)
|
kbfunc_client_vmaximize(struct client_ctx *cc, union arg *arg)
|
||||||
{
|
{
|
||||||
client_vertmaximize(cc);
|
client_vmaximize(cc);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
kbfunc_client_hmaximize(struct client_ctx *cc, union arg *arg)
|
kbfunc_client_hmaximize(struct client_ctx *cc, union arg *arg)
|
||||||
{
|
{
|
||||||
client_horizmaximize(cc);
|
client_hmaximize(cc);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user