diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2015-03-13 17:44:24 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2015-03-13 17:44:24 -0400 |
commit | ba7c1ac49c04ca5d57b49ee143baa7a9eddb1d02 (patch) | |
tree | 84e4f5743acf2341ed70d4324d269bc8e3c0598c /src/modules/access | |
parent | f9f7f001c9391511be964777527122225f7a04ee (diff) | |
download | enlightenment-ba7c1ac49c04ca5d57b49ee143baa7a9eddb1d02.tar.gz |
remove E_Zone->comp member
Diffstat (limited to 'src/modules/access')
-rw-r--r-- | src/modules/access/e_mod_main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/access/e_mod_main.c b/src/modules/access/e_mod_main.c index c5579041c3..5964e01e4b 100644 --- a/src/modules/access/e_mod_main.c +++ b/src/modules/access/e_mod_main.c @@ -88,7 +88,7 @@ _mouse_in_win_get(Cover *cov, int x, int y) then previous target window which has the highlight object should get the message. how? */ target_win = ecore_x_window_shadow_tree_at_xy_with_skip_get - (cov->zone->comp->man->root, x, y, skip, i); + (cov->e_comp->man->root, x, y, skip, i); } static unsigned int @@ -756,9 +756,9 @@ _cover_new(E_Zone *zone) evas_object_show(cov->text); #else - cov->win = ecore_x_window_input_new(zone->comp->manager->root, - zone->comp->x + zone->x, - zone->comp->y + zone->y, + cov->win = ecore_x_window_input_new(e_comp->manager->root, + e_comp->x + zone->x, + e_comp->y + zone->y, zone->w, zone->h); #endif @@ -772,7 +772,7 @@ _cover_new(E_Zone *zone) ECORE_X_WINDOW_CONFIGURE_MASK_SIBLING | ECORE_X_WINDOW_CONFIGURE_MASK_STACK_MODE, 0, 0, 0, 0, 0, - zone->comp->layers[8].win, + e_comp->layers[8].win, ECORE_X_WINDOW_STACK_ABOVE); ecore_x_window_show(cov->win); ecore_x_window_raise(cov->win); |