C function is void

SVN revision: 69475
This commit is contained in:
Andreas Volz 2012-03-16 19:53:51 +00:00
parent 1d766c0cab
commit c4d68fda30
2 changed files with 3 additions and 3 deletions

View File

@ -269,7 +269,7 @@ public:
Elm_List_Mode getHorizontal ();
Elm_Object_Select_Mode setSelectMode (Elm_Object_Select_Mode mode);
void setSelectMode (Elm_Object_Select_Mode mode);
void setHomogeneous (bool homogeneous);

View File

@ -75,9 +75,9 @@ int GenList::getBlockCound ()
return elm_genlist_block_count_get (o);
}
bool GenList::setSelectMode (Elm_Object_Select_Mode mode)
void GenList::setSelectMode (Elm_Object_Select_Mode mode)
{
return elm_genlist_select_mode_set (o, mode);
elm_genlist_select_mode_set (o, mode);
}