Re: [E-devel] E SVN: hermet trunk/ephoto/src/bin

2011-12-11 Thread Michael Blumenkrantz
On Mon, 12 Dec 2011 13:05:27 +0900 Daniel Juyung Seo wrote: > That's for the readability. > Let me give you an example: > > Elm_Object_Item *it1, *it2; // it1 is a menu item, it2 is a toolbar item. > elm_object_item_xxx(it1, ...); > elm_object_item_xxx(it2, ...); > > vs > > Elm_Object_Item *t

Re: [E-devel] E SVN: hermet trunk/ephoto/src/bin

2011-12-11 Thread Daniel Juyung Seo
That's for the readability. Let me give you an example: Elm_Object_Item *it1, *it2; // it1 is a menu item, it2 is a toolbar item. elm_object_item_xxx(it1, ...); elm_object_item_xxx(it2, ...); vs Elm_Object_Item *toolbar_item, *menu_item; elm_object_item_xxx(menu_item, ...); elm_object_item_xxx(

Re: [E-devel] [Patch] edje_entry double click word selection

2011-12-11 Thread Myungjae Lee
Thanks Tom and Vincent for your comments and sorry for late reply :) According to your comments I removed the API, just implemented the default incomplete word breaking and changed names and types as Vincent suggested.. but I think this can conflict with what Tom is planning to implement inside te

Re: [E-devel] E SVN: hermet trunk/ephoto/src/bin

2011-12-11 Thread ChunEon Park
Evas_Object *obj; Elm_Object_Item *it; Evas_Object *obj2; Elm_Object_Item *it2; --- Evas_Object *list; Evas_Object *slideshow; Elm_Object_Item *list_it; Elm_Object_Item *sliding_it; I think sliding_it(or sliding_item)

Re: [E-devel] E SVN: rui trunk/PROTO/epdf

2011-12-11 Thread sea...@gmail.com
Ok, I will :-) -- http://blog.1407.org/ http://identi.ca/ruiseabra Vincent Torri wrote: On Sat, Dec 10, 2011 at 12:28 PM, Enlightenment SVN wrote: > Log: > Add rpm support to epdf tar balls. actually, you should add rpm support to eyesight instead Vincent > > > Author: rui > Date:

Re: [E-devel] Paypal account has been validated

2011-12-11 Thread Nathan Ingersoll
Hi Vincent, Could you send me the info for a direct PayPal transfer so I can send the old funds? Thanks, Nathan On Dec 11, 2011 10:20 AM, "Vincent Torri" wrote: > Hey, > > The paypal account of the french association Enlightenment.fr, which > is used as an account for the whole project, was val

Re: [E-devel] Paypal account has been validated

2011-12-11 Thread Tom Hacohen
On 11/12/11 20:19, Vincent Torri wrote: > Hey, > > The paypal account of the french association Enlightenment.fr, which > is used as an account for the whole project, was validated one hour > ago. > > If you want to support the E project, you can now also donate with > paypal : http://www.enlight

[E-devel] Paypal account has been validated

2011-12-11 Thread Vincent Torri
Hey, The paypal account of the french association Enlightenment.fr, which is used as an account for the whole project, was validated one hour ago. If you want to support the E project, you can now also donate with paypal : http://www.enlightenment.org/p.php?p=donate&l=en regards Vincent Torri T

Re: [E-devel] [Patch] edje_entry double click word selection

2011-12-11 Thread Tom Hacohen
Update: I found some time to finally implement the word breaking algorithm (excluding dictionary lookups). It's something I've been postponing for a while now, and your email reminded me how needed it is. I'll hopefully get everything to a working state soon. Will update you when I do. -- Tom.