tasn pushed a commit to branch master.

http://git.enlightenment.org/bindings/cxx/eflxx.git/commit/?id=219b51f861853dcfcf4d45de52216997cb346644

commit 219b51f861853dcfcf4d45de52216997cb346644
Author: Jiyoun Park <[email protected]>
Date:   Fri Feb 17 09:14:02 2012 +0000

    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<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));
 }
 
 

-- 


Reply via email to