diff --git a/elementaryxx/src/GenListItem.cpp b/elementaryxx/src/GenListItem.cpp index f5476f0..d2086d7 100644 --- a/elementaryxx/src/GenListItem.cpp +++ b/elementaryxx/src/GenListItem.cpp @@ -28,12 +28,12 @@ GenListItem::~GenListItem () void GenListItem::setSelected (bool selected) { - elm_gen_item_selected_set (reinterpret_cast(mItem), selected); + elm_genlist_item_selected_set (reinterpret_cast(mItem), selected); } bool GenListItem::getSelected () const { - return elm_gen_item_selected_get (reinterpret_cast(mItem)); + return elm_genlist_item_selected_get (reinterpret_cast(mItem)); }