From 1a4b5084283d3fe1d083c370218bc5fc7822ab0d Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Sat, 4 Apr 2009 13:02:30 +0200 Subject: [PATCH] client: remove useless icon_path Signed-off-by: Julien Danjou --- client.c | 1 - client.h | 1 - structs.h | 2 -- 3 files changed, 4 deletions(-) diff --git a/client.c b/client.c index 0020e6361..2fddc4dee 100644 --- a/client.c +++ b/client.c @@ -1715,7 +1715,6 @@ luaA_client_newindex(lua_State *L) * invisible in taskbar. * \lfield minimize Define it the client must be iconify, i.e. only visible in * taskbar. - * \lfield icon_path Path to the icon used to identify. * \lfield size_hints_honor Honor size hints, i.e. respect size ratio. * \lfield border_width The client border width. * \lfield border_color The client border color. diff --git a/client.h b/client.h index 471e70cae..57f0a1c02 100644 --- a/client.h +++ b/client.h @@ -30,7 +30,6 @@ static void client_delete(client_t **c) { button_array_wipe(&(*c)->buttons); - p_delete(&(*c)->icon_path); p_delete(&(*c)->name); p_delete(c); } diff --git a/structs.h b/structs.h index 69e18a618..fe0b8b258 100644 --- a/structs.h +++ b/structs.h @@ -221,8 +221,6 @@ struct client_t int screen; /** Client physical screen */ int phys_screen; - /** Path to an icon */ - char *icon_path; /** Titlebar */ wibox_t *titlebar; /** Button bindings */