tasn pushed a commit to branch master. http://git.enlightenment.org/bindings/cxx/eflxx.git/commit/?id=7fdb9195792ccc3512ec77c0f878787fe1638689
commit 7fdb9195792ccc3512ec77c0f878787fe1638689 Author: Andreas Volz <[email protected]> Date: Wed Mar 14 22:17:43 2012 +0000 remove deprecated functions SVN revision: 69346 --- elementaryxx/include/elementaryxx/GenList.h | 4 ---- elementaryxx/src/GenList.cpp | 10 ---------- 2 files changed, 14 deletions(-) diff --git a/elementaryxx/include/elementaryxx/GenList.h b/elementaryxx/include/elementaryxx/GenList.h index 7e18375..73a3629 100644 --- a/elementaryxx/include/elementaryxx/GenList.h +++ b/elementaryxx/include/elementaryxx/GenList.h @@ -269,10 +269,6 @@ public: Elm_List_Mode getHorizontal (); - void setCompressMode (bool compress); - - bool getCompressMode (); - void setHomogeneous (bool homogeneous); bool getHomogeneous (); diff --git a/elementaryxx/src/GenList.cpp b/elementaryxx/src/GenList.cpp index 474ff7c..6f9f4e0 100644 --- a/elementaryxx/src/GenList.cpp +++ b/elementaryxx/src/GenList.cpp @@ -55,16 +55,6 @@ Elm_List_Mode GenList::getHorizontal () return elm_genlist_mode_get (o); } -void GenList::setCompressMode (bool compress) -{ - elm_genlist_compress_mode_set (o, compress); -} - -bool GenList::getCompressMode () -{ - return elm_genlist_compress_mode_get (o); -} - void GenList::setHomogeneous (bool homogeneous) { elm_genlist_homogeneous_set (o, homogeneous); --
