[E-devel] Re: E CVS: apps/e sebastid

2006-01-07 Thread JC Wong
enlightenment-cvs@lists.sourceforge.net wrote on Sat, Jan 07, 2006 at 05:21:35AM -0800 > Enlightenment CVS committal > > Author : sebastid > Project : e17 > Module : apps/e > > Dir : e17/apps/e/src/bin > > > Modified Files: > e_thumb.c > > > Log Message: > The evas object isn't

[E-devel] Re: E CVS: apps/e sebastid

2005-10-06 Thread Nathan Ingersoll
Another option that I use fairly often to avoid the second list traversal is to use ecore_list_remove_first and pop items off the beginning of the list. So your loop becomes while ((file = ecore_list_remove_first(files)))   { /* Do something with file */ free(file);   } Definitely use e

[E-devel] Re: E CVS: apps/e sebastid

2005-10-04 Thread Hisham Mardam Bey
> -* BUG: when moving e_win its resize callbacks get called with alternating > - width and height (this is why we have flickering in the conf panel) This bug is still present. -- Hisham Mardam Bey MSc (Computer Science) http://hisham.cc/ +9613609386 Codito Ergo Sum (I Code Therefore I Am)

Re: [E-devel] Re: E CVS: apps/e sebastid

2005-09-23 Thread Sebastian Dransfeld
Kim Woelders wrote: enlightenment-cvs@lists.sourceforge.net wrote: Enlightenment CVS committal Author : sebastid Project : e17 Module : apps/e Dir : e17/apps/e/src/bin Modified Files: e_dialog.c Log Message: Make dialog windows transient, so that they are recognized as dialogs.

[E-devel] Re: E CVS: apps/e sebastid

2005-09-23 Thread Kim Woelders
enlightenment-cvs@lists.sourceforge.net wrote: Enlightenment CVS committal Author : sebastid Project : e17 Module : apps/e Dir : e17/apps/e/src/bin Modified Files: e_dialog.c Log Message: Make dialog windows transient, so that they are recognized as dialogs. ==