[tasklist] Rename showclient_t type correctly
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
f12f1798dd
commit
4d64efe64e
|
@ -37,17 +37,17 @@ typedef enum
|
||||||
ShowFocus,
|
ShowFocus,
|
||||||
ShowTags,
|
ShowTags,
|
||||||
ShowAll,
|
ShowAll,
|
||||||
} Showclient_t;
|
} showclient_t;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
Showclient_t show;
|
showclient_t show;
|
||||||
bool show_icons;
|
bool show_icons;
|
||||||
char *text_normal, *text_urgent, *text_focus;
|
char *text_normal, *text_urgent, *text_focus;
|
||||||
} Data;
|
} Data;
|
||||||
|
|
||||||
static inline bool
|
static inline bool
|
||||||
tasklist_isvisible(client_t *c, int screen, Showclient_t show)
|
tasklist_isvisible(client_t *c, int screen, showclient_t show)
|
||||||
{
|
{
|
||||||
if(c->skip || c->skiptb)
|
if(c->skip || c->skiptb)
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue