change binding using elm_genlist instead of elm_gen

elm gen was deprecated


SVN revision: 68061
This commit is contained in:
Jiyoun Park 2012-02-17 09:14:02 +00:00
parent 51245f4cda
commit 219b51f861
1 changed files with 2 additions and 2 deletions

View File

@ -28,12 +28,12 @@ GenListItem::~GenListItem ()
void GenListItem::setSelected (bool selected)
{
elm_gen_item_selected_set (reinterpret_cast<Elm_Gen_Item *>(mItem), selected);
elm_genlist_item_selected_set (reinterpret_cast<Elm_Object_Item *>(mItem), selected);
}
bool GenListItem::getSelected () const
{
return elm_gen_item_selected_get (reinterpret_cast<Elm_Gen_Item *>(mItem));
return elm_genlist_item_selected_get (reinterpret_cast<Elm_Object_Item *>(mItem));
}