[E-devel] Debug...

2008-12-03 Thread Anders Troback
Hi, E17 is crashing for me! I just start up E17, click on desktop to get main menu, moving the mouse over the menu and then it srgfault! Running FreeBSD 7.1-STABLE and the co from svn are about 2h old! gdb output: Program received signal SIGSEGV, Segmentation fault. eina_chained_mempool_malloc (

Re: [E-devel] Debug...

2008-12-03 Thread Iván Briano (Sachiel)
On Wed, Dec 3, 2008 at 9:45 AM, Anders Troback <[EMAIL PROTECTED]> wrote: > Hi, > > E17 is crashing for me! I just start up E17, click on desktop to get > main menu, moving the mouse over the menu and then it srgfault! > > Running FreeBSD 7.1-STABLE and the co from svn are about 2h old! > > gdb out

Re: [E-devel] Debug...

2008-12-03 Thread Cedric BAIL
On Wed, Dec 3, 2008 at 1:33 PM, Iván Briano (Sachiel) <[EMAIL PROTECTED]> wrote: > On Wed, Dec 3, 2008 at 9:45 AM, Anders Troback > <[EMAIL PROTECTED]> wrote: >> Hi, >> >> E17 is crashing for me! I just start up E17, click on desktop to get >> main menu, moving the mouse over the menu and then it s

Re: [E-devel] Debug...

2008-12-03 Thread Anders Troback
On Wed, 3 Dec 2008 10:33:55 -0200 "Iván Briano (Sachiel)" <[EMAIL PROTECTED]> wrote: > On Wed, Dec 3, 2008 at 9:45 AM, Anders Troback > <[EMAIL PROTECTED]> wrote: > > Hi, > > > > E17 is crashing for me! I just start up E17, click on desktop to get > > main menu, moving the mouse over the menu and

Re: [E-devel] Debug...

2008-12-03 Thread Iván Briano (Sachiel)
On Wed, Dec 3, 2008 at 12:04 PM, Anders Troback <[EMAIL PROTECTED]> wrote: > On Wed, 3 Dec 2008 10:33:55 -0200 > "Iván Briano (Sachiel)" <[EMAIL PROTECTED]> wrote: > >> On Wed, Dec 3, 2008 at 9:45 AM, Anders Troback >> <[EMAIL PROTECTED]> wrote: >> > Hi, >> > >> > E17 is crashing for me! I just sta

[E-devel] some Czech translations for Enlightenment DR17

2008-12-03 Thread Quaker
Hi, I created full Czech translations for: The whole Enlightenment DR17 WM Elitaire Ephoto Emodules: alarm cpu emu flame forecasts iiirk language mail mem moon net notification penguins photo rain slideshow snow taskbar tclock uptime weather wlan :) The archive is in the attachment :) Please

Re: [E-devel] Debug...

2008-12-03 Thread Ravenlock
On 12/03/2008 08:04, Anders Troback wrote: > On Wed, 3 Dec 2008 10:33:55 -0200 > "Iván Briano (Sachiel)" <[EMAIL PROTECTED]> wrote: > >> On Wed, Dec 3, 2008 at 9:45 AM, Anders Troback >> <[EMAIL PROTECTED]> wrote: >>> Hi, >>> >>> E17 is crashing for me! I just start up E17, click on desktop to get

Re: [E-devel] some Czech translations for Enlightenment DR17

2008-12-03 Thread Massimo Maiurana
Quaker, il 03/12/2008 17:44, scrisse: > Hi, > > I created full Czech translations for: > > The whole Enlightenment DR17 WM > Elitaire > Ephoto > > Emodules: > > alarm > cpu > emu > flame > forecasts > iiirk > language > mail > mem > moon > net > notification > penguins > photo > rain > slidesho

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

2008-12-03 Thread Gustavo Sverzut Barbieri
On Wed, Dec 3, 2008 at 3:59 PM, Enlightenment SVN <[EMAIL PROTECTED]> wrote: > Log: > add cast > > Author: caro > Date: 2008-12-03 09:59:39 -0800 (Wed, 03 Dec 2008) > New Revision: 37915 > > Modified: > trunk/evas/src/lib/canvas/evas_object_box.c > > Modified: trunk/evas/src/lib/can

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

2008-12-03 Thread Vincent Torri
On Wed, 3 Dec 2008, Gustavo Sverzut Barbieri wrote: >> - priv = calloc(1, sizeof(*priv)); >> + priv = (Evas_Object_Box_Data *)calloc(1, sizeof(*priv)); > > This is C and not C++, this is not required. Please do not add these. Sorry, I keep them. You never compiled code with vc++...

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

2008-12-03 Thread Gustavo Sverzut Barbieri
On Wed, Dec 3, 2008 at 6:45 PM, Vincent Torri <[EMAIL PROTECTED]> wrote: > > > On Wed, 3 Dec 2008, Gustavo Sverzut Barbieri wrote: > >>> - priv = calloc(1, sizeof(*priv)); >>> + priv = (Evas_Object_Box_Data *)calloc(1, sizeof(*priv)); >> >> This is C and not C++, this is not required. P

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

2008-12-03 Thread Vincent Torri
On Wed, 3 Dec 2008, Gustavo Sverzut Barbieri wrote: > it's portable but often buggy. If compile does not work with c99, then > it's a huge problem... vc++ is not C99 compliant but it supports some of its features. Not all. So do I use alloca or not instead of variable-size arrays ? Vincent -

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

2008-12-03 Thread Sebastian Dransfeld
Vincent Torri wrote: > > On Wed, 3 Dec 2008, Gustavo Sverzut Barbieri wrote: > >> it's portable but often buggy. If compile does not work with c99, then >> it's a huge problem... > > vc++ is not C99 compliant but it supports some of its features. Not all. > > So do I use alloca or not instead o