summaryrefslogtreecommitdiff
path: root/src/core/core.c
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2012-12-03 14:52:36 -0500
committerJasper St. Pierre <jstpierre@mecheye.net>2014-03-18 21:27:31 -0400
commit2a0dee9883da005ee90b37c69aa0b617c8a8034c (patch)
treecf8270e85944fbabd97aaa9cf9a064495010ef40 /src/core/core.c
parent1502d2a79f7ecd2ec2ea9caf895d5a64cc2615b9 (diff)
downloadmutter-wip/icons.tar.gz
Diffstat (limited to 'src/core/core.c')
-rw-r--r--src/core/core.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/core/core.c b/src/core/core.c
index cb2a747e5..05029d5dc 100644
--- a/src/core/core.c
+++ b/src/core/core.c
@@ -737,31 +737,6 @@ meta_core_increment_event_serial (Display *xdisplay)
}
void
-meta_invalidate_default_icons (void)
-{
- MetaDisplay *display = meta_get_display ();
- GSList *windows;
- GSList *l;
-
- if (display == NULL)
- return; /* We can validly be called before the display is opened. */
-
- windows = meta_display_list_windows (display, META_LIST_DEFAULT);
- for (l = windows; l != NULL; l = l->next)
- {
- MetaWindow *window = (MetaWindow*)l->data;
-
- if (window->icon_cache.origin == USING_FALLBACK_ICON)
- {
- meta_icon_cache_free (&(window->icon_cache));
- meta_window_update_icon_now (window);
- }
- }
-
- g_slist_free (windows);
-}
-
-void
meta_core_add_old_event_mask (Display *xdisplay,
Window xwindow,
XIEventMask *mask)