From 4d64efe64e8949706dfbd9874909a29567c59ea8 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 28 Apr 2008 15:29:21 +0200 Subject: [PATCH] [tasklist] Rename showclient_t type correctly Signed-off-by: Julien Danjou --- widgets/tasklist.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/widgets/tasklist.c b/widgets/tasklist.c index 3cca03f3..b2f8760a 100644 --- a/widgets/tasklist.c +++ b/widgets/tasklist.c @@ -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;