From 219b51f861853dcfcf4d45de52216997cb346644 Mon Sep 17 00:00:00 2001 From: Jiyoun Park Date: Fri, 17 Feb 2012 09:14:02 +0000 Subject: [PATCH] change binding using elm_genlist instead of elm_gen elm gen was deprecated SVN revision: 68061 --- elementaryxx/src/GenListItem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)); }