From d93bb6c89985fbda50ba375e0fc9eab227e70735 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 10 Mar 2015 18:29:09 -0400 Subject: [PATCH] don't modify pixmap hash when changing pixmap parent window moderately certain I originally wrote this to work in the other direction and then failed to remove it when I switched to setting parents instead of children. regardless, pixmap hash should not be changed here --- src/bin/e_pixmap.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/bin/e_pixmap.c b/src/bin/e_pixmap.c index cfff95d0a..103c78b76 100644 --- a/src/bin/e_pixmap.c +++ b/src/bin/e_pixmap.c @@ -179,7 +179,6 @@ e_pixmap_free(E_Pixmap *cp) if (!cp) return 0; if (--cp->refcount) return cp->refcount; e_pixmap_image_clear(cp, EINA_FALSE); - if (cp->parent) eina_hash_set(pixmaps[cp->type], &cp->parent, NULL); eina_hash_del_by_key(pixmaps[cp->type], &cp->win); return 0; } @@ -267,10 +266,7 @@ e_pixmap_parent_window_set(E_Pixmap *cp, Ecore_Window win) e_pixmap_usable_set(cp, 0); e_pixmap_clear(cp); - if (cp->parent) - eina_hash_set(pixmaps[cp->type], &cp->parent, NULL); cp->parent = win; - if (win) eina_hash_add(pixmaps[cp->type], &win, cp); } EAPI void