window: Remove support for _NET_WM_ICON_NAME

We don't seem to use it anywhere.
This commit is contained in:
Jasper St. Pierre
2014-03-18 21:48:52 -04:00
parent 9c94f8ae47
commit 0a20f7458c
5 changed files with 2 additions and 81 deletions

View File

@ -91,7 +91,6 @@ struct _MetaWindow
char *desc; /* used in debug spew */
char *title;
char *icon_name;
GdkPixbuf *icon;
GdkPixbuf *mini_icon;
MetaIconCache icon_cache;

View File

@ -249,7 +249,6 @@ meta_window_finalize (GObject *object)
g_free (window->res_class);
g_free (window->res_name);
g_free (window->title);
g_free (window->icon_name);
g_free (window->desc);
g_free (window->gtk_theme_variant);
g_free (window->gtk_application_id);
@ -838,7 +837,6 @@ _meta_window_shared_new (MetaDisplay *display,
window->colormap = attrs->colormap;
window->title = NULL;
window->icon_name = NULL;
window->icon = NULL;
window->mini_icon = NULL;
meta_icon_cache_init (&window->icon_cache);