Revert "genlist: use eina bool"

This reverts commit 1879cc39258c63c24f0abcff56558b1f1b60167a.

  Hermet, please check this commit it makes Fileselector crash,
  looks like you inverted the values: 1 should be EINA_TRUE.
  I recommend you to use Exactness to run all the tests automatically.
This commit is contained in:
Yakov Goldberg 2015-01-11 16:32:42 +02:00
parent 95494c3a98
commit 89133c8f58
1 changed files with 3 additions and 3 deletions

View File

@ -4397,15 +4397,15 @@ newblock:
return EINA_TRUE;
}
static Eina_Bool
static int
_item_process(Elm_Genlist_Data *sd,
Elm_Gen_Item *it)
{
if (!_item_block_add(sd, it)) return EINA_FALSE;
if (!_item_block_add(sd, it)) return 1;
if (!sd->blocks)
_item_block_realize(it->item->block);
return EINA_TRUE;
return 0;
}
static void