Some small gui work and bug fixes

This commit is contained in:
Jaime Thomas
2008-06-10 03:33:53 +00:00
parent 36a8ee2a74
commit c3e9082219
9 changed files with 112 additions and 8 deletions

View File

@ -20,7 +20,6 @@ ecdb_project_new(void)
int
ecdb_project_init(Ecdb_Project *proj)
{
ecore_list_append(em->projects, proj);
return TRUE;
}
@ -30,11 +29,15 @@ ecdb_project_destroy(Ecdb_Project *proj)
free(proj);
}
void
ecdb_project_type_set(Ecdb_Project *proj, unsigned int t)
{
proj->type = t;
}
int
ecdb_shutdown(void *data, int type, void *event)
{
if (em->projects)
ecore_list_destroy(em->projects);
if (em->drives)
ecore_list_destroy(em->drives);
free(em);