From 7c987dcd1f7b2e0f0cb32cb3971fcdbf15284ae4 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Tue, 7 Aug 2012 10:47:55 +0000 Subject: [PATCH] use zome num, not id so we all acree on zome num now... not id... :) SVN revision: 74975 --- src/bin/e_container.c | 4 ++-- src/bin/e_shelf.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/e_container.c b/src/bin/e_container.c index af22e9225..9c53eaa6c 100644 --- a/src/bin/e_container.c +++ b/src/bin/e_container.c @@ -1199,8 +1199,8 @@ _e_container_resize_handle(E_Container *con) /* find any shelves configured for this zone and add them in */ EINA_LIST_FOREACH(e_config->shelves, ll, cf_es) { - if (e_util_container_zone_id_get(cf_es->container, - cf_es->zone) == zone) + if (e_util_container_zone_number_get + (cf_es->container, cf_es->zone) == zone) e_shelf_config_new(zone, cf_es); } } diff --git a/src/bin/e_shelf.c b/src/bin/e_shelf.c index 510f27c80..dd8abfa98 100644 --- a/src/bin/e_shelf.c +++ b/src/bin/e_shelf.c @@ -83,7 +83,7 @@ e_shelf_config_update(void) E_Zone *zone; if (cf_es->id <= 0) cf_es->id = id + 1; - zone = e_util_container_zone_id_get(cf_es->container, cf_es->zone); + zone = e_util_container_zone_number_get(cf_es->container, cf_es->zone); if (zone) e_shelf_config_new(zone, cf_es); id = cf_es->id;