diff --git a/client.c b/client.c index 3d9c8a7c..ccaa49ac 100644 --- a/client.c +++ b/client.c @@ -1804,7 +1804,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 6a91b9e5..3d507c0c 100644 --- a/client.h +++ b/client.h @@ -36,7 +36,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 0e489340..368a1121 100644 --- a/structs.h +++ b/structs.h @@ -227,8 +227,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 */