Re: [E-devel] Enlightenment config messed up

2009-08-24 Thread Cedric BAIL
On Sun, Aug 23, 2009 at 9:16 PM, victor wrote: >> 1. Adding or deleting  modules to a shelf often makes one of the other >> modules appear in duplicate. Apparently the shelf setting does not store >> the module as a duplicate in the config file since > > I have this trouble too as well. I discovere

Re: [E-devel] [PATCH] Ecore con API for retrieving response headers, docs

2009-08-24 Thread Cedric BAIL
On Mon, Aug 24, 2009 at 5:25 AM, Andre Dieb wrote: > Attached patch adds a way of retrieving request response headers. Also adds > some doc. Sounds good, in svn. -- Cedric BAIL -- Let Crystal Reports handle the reportin

[E-devel] Evas bugger

2009-08-24 Thread Christopher Michael
Looking through some code, I stumbled upon this which doesn't seem right: EAPI Evas * evas_object_evas_get(const Evas_Object *obj) { MAGIC_CHECK(obj, Evas_Object, MAGIC_OBJ); return NULL; MAGIC_CHECK_END(); if (obj->delete_me) return 0; return obj->layer->evas; } Shouldn't tha

Re: [E-devel] Evas bugger

2009-08-24 Thread Christopher Michael
Christopher Michael wrote: > Looking through some code, I stumbled upon this which doesn't seem right: > > EAPI Evas * > evas_object_evas_get(const Evas_Object *obj) > { > MAGIC_CHECK(obj, Evas_Object, MAGIC_OBJ); > return NULL; > MAGIC_CHECK_END(); > if (obj->delete_me) return 0;

Re: [E-devel] Evas bugger

2009-08-24 Thread Mikhail Gusarov
Twas brillig at 06:28:41 24.08.2009 UTC-04 when cpmicha...@comcast.net did gyre and gimble: CM> if (obj->delete_me) return 0; CM> Shouldn't that be: CM> if (obj->delete_me) return NULL; ./linux/stddef.h:#define NULL 0 -- http://fossarchy.blogspot.com/ pgpxxDGlAnKXA.pgp Descrip

Re: [E-devel] Evas bugger

2009-08-24 Thread Vincent Torri
On Mon, 24 Aug 2009, Christopher Michael wrote: > Christopher Michael wrote: >> Looking through some code, I stumbled upon this which doesn't seem right: >> >> EAPI Evas * >> evas_object_evas_get(const Evas_Object *obj) >> { >> MAGIC_CHECK(obj, Evas_Object, MAGIC_OBJ); >> return NULL; >>

Re: [E-devel] Evas bugger

2009-08-24 Thread Christopher Michael
Christopher Michael wrote: > Christopher Michael wrote: >> Looking through some code, I stumbled upon this which doesn't seem right: >> >> EAPI Evas * >> evas_object_evas_get(const Evas_Object *obj) >> { >> MAGIC_CHECK(obj, Evas_Object, MAGIC_OBJ); >> return NULL; >> MAGIC_CHECK_END();

Re: [E-devel] Evas bugger

2009-08-24 Thread Christopher Michael
Vincent Torri wrote: > > > On Mon, 24 Aug 2009, Christopher Michael wrote: > >> Christopher Michael wrote: >>> Looking through some code, I stumbled upon this which doesn't seem >>> right: >>> >>> EAPI Evas * >>> evas_object_evas_get(const Evas_Object *obj) >>> { >>> MAGIC_CHECK(obj, Evas_O

Re: [E-devel] Evas bugger

2009-08-24 Thread Christopher Michael
Mikhail Gusarov wrote: > Twas brillig at 06:28:41 24.08.2009 UTC-04 when cpmicha...@comcast.net did > gyre and gimble: > > CM> if (obj->delete_me) return 0; > > CM> Shouldn't that be: > CM> if (obj->delete_me) return NULL; > > ./linux/stddef.h:#define NULL 0 > And if we're not on li

Re: [E-devel] Evas bugger

2009-08-24 Thread Mikhail Gusarov
Twas brillig at 06:55:12 24.08.2009 UTC-04 when cpmicha...@comcast.net did gyre and gimble: CM> regardless of platform the returns are as expected. NULL is declared as 0 in C standard. Consistency wins, I agree, but portability is not hurt by using 0 instead of NULL. -- http://fossarchy.bl

Re: [E-devel] Evas bugger

2009-08-24 Thread Albin Tonnerre
On Mon, Aug 24, 2009 at 06:07:20PM +0700, Mikhail Gusarov wrote : > > Twas brillig at 06:55:12 24.08.2009 UTC-04 when cpmicha...@comcast.net did > gyre and gimble: > > CM> regardless of platform the returns are as expected. > > NULL is declared as 0 in C standard. Consistency wins, I agree, bu

Re: [E-devel] E SVN: cedric trunk/ecore/src/lib/ecore_con

2009-08-24 Thread Andre Dieb
Hi, Could someone please apply the attached patch? It removes an annoying debug message I've put there when testing. Thanks. On Mon, Aug 24, 2009 at 6:41 AM, Enlightenment SVN < no-re...@enlightenment.org> wrote: > Log: >* ecore_con_url: Add a way to retrieve request response headers. >

Re: [E-devel] E SVN: cedric trunk/ecore/src/lib/ecore_con

2009-08-24 Thread Cedric BAIL
On Mon, Aug 24, 2009 at 3:17 PM, Andre Dieb wrote: > Could someone please apply the attached patch? It removes an annoying debug > message I've put there when testing. In svn. -- Cedric BAIL -- Let Crystal Reports handl

Re: [E-devel] E SVN: caro trunk/edje/src/lib

2009-08-24 Thread Vincent Torri
Cedric told me that i can even removed, in edje_calc, the parameters that I have marked as unused. Is there an objection ? Vincent On Mon, 24 Aug 2009, Enlightenment SVN wrote: Log: * remove unused parameters (except in edje_lua.c, as i don't know the current status) * remove unused v

Re: [E-devel] E SVN: caro trunk/edje/src/lib

2009-08-24 Thread Gustavo Sverzut Barbieri
On Mon, Aug 24, 2009 at 2:22 PM, Vincent Torri wrote: > > Cedric told me that i can even removed, in edje_calc, the parameters that I > have marked as unused. > > Is there an objection ? go for it! -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems --

[E-devel] [patch] Unable to remove gadget by gadcon 'set content' window

2009-08-24 Thread victor
Hi guys Subj happens. Hope included patch will fix that. Regards, Vcitor. Removing gadgets using gadcon 'set content' window seems to be broken. I believe this patch will fix that. e_int_gadcon_config.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: e17-svn/src/bin/e_int_gadco

Re: [E-devel] [patch] Unable to remove gadget by gadcon 'set content' window

2009-08-24 Thread Christopher Michael
victor wrote: > Hi guys > > Subj happens. Hope included patch will fix that. > > Regards, > > Vcitor. > Indeed !! Committed. Thanks :) dh -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Da