stack: fix bad rename
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
0ca02db3c6
commit
316bca21be
4
client.h
4
client.h
|
@ -247,11 +247,11 @@ client_raise(client_t *c)
|
||||||
static inline void
|
static inline void
|
||||||
client_lower(client_t *c)
|
client_lower(client_t *c)
|
||||||
{
|
{
|
||||||
stack_luaA_object_push(c);
|
stack_client_push(c);
|
||||||
|
|
||||||
/* Traverse all transient layers. */
|
/* Traverse all transient layers. */
|
||||||
for(client_t *tc = c->transient_for; tc; tc = tc->transient_for)
|
for(client_t *tc = c->transient_for; tc; tc = tc->transient_for)
|
||||||
stack_luaA_object_push(tc);
|
stack_client_push(tc);
|
||||||
|
|
||||||
client_stack();
|
client_stack();
|
||||||
}
|
}
|
||||||
|
|
2
stack.c
2
stack.c
|
@ -39,7 +39,7 @@ stack_client_remove(client_t *c)
|
||||||
* \param c The client to push.
|
* \param c The client to push.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
stack_luaA_object_push(client_t *c)
|
stack_client_push(client_t *c)
|
||||||
{
|
{
|
||||||
stack_client_remove(c);
|
stack_client_remove(c);
|
||||||
client_array_push(&globalconf.stack, c);
|
client_array_push(&globalconf.stack, c);
|
||||||
|
|
2
stack.h
2
stack.h
|
@ -25,7 +25,7 @@
|
||||||
#include "structs.h"
|
#include "structs.h"
|
||||||
|
|
||||||
void stack_client_remove(client_t *);
|
void stack_client_remove(client_t *);
|
||||||
void stack_luaA_object_push(client_t *);
|
void stack_client_push(client_t *);
|
||||||
void stack_client_append(client_t *);
|
void stack_client_append(client_t *);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue