placement: rename FloatingPlacement to floating_placement_t

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-06-15 10:55:07 +02:00
parent 72957f999a
commit 7d7e5b960a
2 changed files with 4 additions and 4 deletions

View File

@ -24,8 +24,8 @@
#include "structs.h"
FloatingPlacement placement_smart;
FloatingPlacement placement_under_mouse;
floating_placement_t placement_smart;
floating_placement_t placement_under_mouse;
#endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80

View File

@ -63,7 +63,7 @@ typedef struct keybinding_t keybinding_t;
typedef struct client_node_t client_node_t;
typedef struct _tag_t tag_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 void (widget_destructor_t)(widget_t *);
typedef struct awesome_t awesome_t;
@ -417,7 +417,7 @@ struct awesome_t
/** Path to config file */
char *configpath;
/** Floating window placement algo */
FloatingPlacement *floating_placement;
floating_placement_t *floating_placement;
/** Selected clients history */
client_node_t *focus;
/** Stack client history */