placement: rename FloatingPlacement to floating_placement_t
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
72957f999a
commit
7d7e5b960a
|
@ -24,8 +24,8 @@
|
||||||
|
|
||||||
#include "structs.h"
|
#include "structs.h"
|
||||||
|
|
||||||
FloatingPlacement placement_smart;
|
floating_placement_t placement_smart;
|
||||||
FloatingPlacement placement_under_mouse;
|
floating_placement_t placement_under_mouse;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|
||||||
|
|
|
@ -63,7 +63,7 @@ typedef struct keybinding_t keybinding_t;
|
||||||
typedef struct client_node_t client_node_t;
|
typedef struct client_node_t client_node_t;
|
||||||
typedef struct _tag_t tag_t;
|
typedef struct _tag_t tag_t;
|
||||||
typedef struct tag_client_node_t tag_client_node_t;
|
typedef struct tag_client_node_t tag_client_node_t;
|
||||||
typedef area_t (FloatingPlacement)(client_t *);
|
typedef area_t (floating_placement_t)(client_t *);
|
||||||
typedef widget_t *(widget_constructor_t)(alignment_t);
|
typedef widget_t *(widget_constructor_t)(alignment_t);
|
||||||
typedef void (widget_destructor_t)(widget_t *);
|
typedef void (widget_destructor_t)(widget_t *);
|
||||||
typedef struct awesome_t awesome_t;
|
typedef struct awesome_t awesome_t;
|
||||||
|
@ -417,7 +417,7 @@ struct awesome_t
|
||||||
/** Path to config file */
|
/** Path to config file */
|
||||||
char *configpath;
|
char *configpath;
|
||||||
/** Floating window placement algo */
|
/** Floating window placement algo */
|
||||||
FloatingPlacement *floating_placement;
|
floating_placement_t *floating_placement;
|
||||||
/** Selected clients history */
|
/** Selected clients history */
|
||||||
client_node_t *focus;
|
client_node_t *focus;
|
||||||
/** Stack client history */
|
/** Stack client history */
|
||||||
|
|
Loading…
Reference in New Issue