[E-devel] missing mempool deletion in eina_quadtree_shutdown()

2010-12-28 Thread Vincent Torri
Hey, below is a patch to delete mempools in eina_quadtree_shutdown() (i currently can not commit). Vincent Index: src/lib/eina_quadtree.c === --- src/lib/eina_quadtree.c (revision 55509) +++ src/lib/eina_quadtree.c

Re: [E-devel] Proposed new EFL Manual (and some wiki updates)

2010-12-28 Thread Vincent Torri
On Tue, 28 Dec 2010, Carsten Haitzler (The Rasterman) wrote: On Mon, 20 Dec 2010 22:19:23 +0100 Lionel Orry lionel.o...@gmail.com said: Hmmm... ok - time to chime in. 1. i'm kind of worried how any such efl manual and doxygen docs will work together. as such doxy is pretty much the

Re: [E-devel] [Patch] elm_genlist multi-touch smart callbacks added

2010-12-28 Thread Jeonghyun Yun
Thanks for your advice. 1. if( it-wd-prev_mx * it-wd-prev_my == 0 ) return; Sometimes MULTI_MOVE callback called before MULTI_DOWN so I added this code for prevention. But this code no longer need because device id checking. I removed code in patch. Please forget formatting mistake.

Re: [E-devel] Proposed new EFL Manual (and some wiki updates)

2010-12-28 Thread The Rasterman
On Tue, 28 Dec 2010 09:59:54 +0100 (CET) Vincent Torri vto...@univ-evry.fr said: that leads to #1. as such developers do hate having to fire up OO to document things. but as such the things they document are in text anyway - in the source in javadoc. what i want to know is.. how will these

Re: [E-devel] [Patch] elm_genlist multi-touch smart callbacks added

2010-12-28 Thread The Rasterman
On Tue, 28 Dec 2010 18:18:48 +0900 Jeonghyun Yun jh0506@samsung.com said: Thanks for your advice. 1. if( it-wd-prev_mx * it-wd-prev_my == 0 ) return; Sometimes MULTI_MOVE callback called before MULTI_DOWN so I added this code for prevention. But this code no longer need because