Revert "entrance: added new functions to access the user pools"

This reverts commit 9a5514c6e4.
This commit is contained in:
Marcel Hollerbach 2014-05-14 17:15:45 +02:00
parent c28e179ddb
commit b01528c8a6
2 changed files with 0 additions and 28 deletions

View File

@ -491,32 +491,6 @@ entrance_gui_conf_set(const Entrance_Conf_Gui_Event *conf)
_gui->changed = ~(ENTRANCE_CONF_NONE);
_entrance_gui_update();
}
static Entrance_User_Pool*
_entrance_gui_user_pool_get(const char *name)
{
Eina_List *node;
Entrance_User_Pool *pool;
EINA_LIST_FOREACH(_gui->user_pools, node, pool)
{
if (!strcmp(pool->name, name))
{
return pool;
}
}
return NULL;
}
Eina_List*
entrance_gui_user_icon_pool_get(const char *name)
{
return _entrance_gui_user_pool_get(name)->icon_pool;
}
Eina_List*
entrance_gui_user_background_pool_get(const char *name)
{
return _entrance_gui_user_pool_get(name)->background_pool;
}
void
entrance_gui_pools_set(const Entrance_Pools *pool)

View File

@ -31,8 +31,6 @@ void entrance_gui_user_bg_set(const char *path, const char *group);
Eina_List* entrance_gui_background_pool_get(void);
Eina_List* entrance_gui_icon_pool_get(void);
void entrance_gui_pools_set(const Entrance_Pools *pool);
Eina_List* entrance_gui_user_icon_pool_get(const char *name);
Eina_List* entrance_gui_user_background_pool_get(const char *name);
/*
char *entrance_gui_user_get();