[tasklist] Rename showclient_t type correctly

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-04-28 15:29:21 +02:00
parent f12f1798dd
commit 4d64efe64e
1 changed files with 3 additions and 3 deletions

View File

@ -37,17 +37,17 @@ typedef enum
ShowFocus,
ShowTags,
ShowAll,
} Showclient_t;
} showclient_t;
typedef struct
{
Showclient_t show;
showclient_t show;
bool show_icons;
char *text_normal, *text_urgent, *text_focus;
} Data;
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)
return false;