client: remove useless icon_path
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
fc705933ce
commit
1a4b508428
1
client.c
1
client.c
|
@ -1715,7 +1715,6 @@ luaA_client_newindex(lua_State *L)
|
||||||
* invisible in taskbar.
|
* invisible in taskbar.
|
||||||
* \lfield minimize Define it the client must be iconify, i.e. only visible in
|
* \lfield minimize Define it the client must be iconify, i.e. only visible in
|
||||||
* taskbar.
|
* taskbar.
|
||||||
* \lfield icon_path Path to the icon used to identify.
|
|
||||||
* \lfield size_hints_honor Honor size hints, i.e. respect size ratio.
|
* \lfield size_hints_honor Honor size hints, i.e. respect size ratio.
|
||||||
* \lfield border_width The client border width.
|
* \lfield border_width The client border width.
|
||||||
* \lfield border_color The client border color.
|
* \lfield border_color The client border color.
|
||||||
|
|
1
client.h
1
client.h
|
@ -30,7 +30,6 @@ static void
|
||||||
client_delete(client_t **c)
|
client_delete(client_t **c)
|
||||||
{
|
{
|
||||||
button_array_wipe(&(*c)->buttons);
|
button_array_wipe(&(*c)->buttons);
|
||||||
p_delete(&(*c)->icon_path);
|
|
||||||
p_delete(&(*c)->name);
|
p_delete(&(*c)->name);
|
||||||
p_delete(c);
|
p_delete(c);
|
||||||
}
|
}
|
||||||
|
|
|
@ -221,8 +221,6 @@ struct client_t
|
||||||
int screen;
|
int screen;
|
||||||
/** Client physical screen */
|
/** Client physical screen */
|
||||||
int phys_screen;
|
int phys_screen;
|
||||||
/** Path to an icon */
|
|
||||||
char *icon_path;
|
|
||||||
/** Titlebar */
|
/** Titlebar */
|
||||||
wibox_t *titlebar;
|
wibox_t *titlebar;
|
||||||
/** Button bindings */
|
/** Button bindings */
|
||||||
|
|
Loading…
Reference in New Issue