client: remove useless icon_path

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-04-04 13:02:30 +02:00
parent fc705933ce
commit 1a4b508428
3 changed files with 0 additions and 4 deletions

View File

@ -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.

View File

@ -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);
}

View File

@ -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 */