Re: [E-devel] winlist escape patch

2007-03-12 Thread Christopher Michael
Stark, Thomas wrote: Hi, attached a patch which restores the last focused border, mouseposition and desktop when you press escape while selecting through the winlist. Bye, Thomas Apparently this patch has been applied already ?? Cheers, dh

[E-devel] Ecore_Str new feature...

2007-03-12 Thread Stéphane Bauland
Hi people. I needed a function to split a string into a list. My first func used Ecore_List * as return value, and dourse said me that's not really good. He said me to return a char ** so i did it. And i put it under ecore_str. The patch have two functions. The one to allocate the array of

Re: [E-devel] Ecore_Str new feature...

2007-03-12 Thread Brian Mattern
On Mon, Mar 12, 2007 at 12:41:41PM +0100, Stéphane Bauland wrote: + * @param max_tokens The maximum number of strings to split string into. If this is less than 1, the string is split completely. + if ( max_tokens 1 ) max_tokens = 100; Filthy lies :) rephorm

Re: [E-devel] Ecore_Str new feature...

2007-03-12 Thread Stéphane Bauland
Brian Mattern wrote: On Mon, Mar 12, 2007 at 12:41:41PM +0100, Stéphane Bauland wrote: + * @param max_tokens The maximum number of strings to split string into. If this is less than 1, the string is split completely. + if ( max_tokens 1 ) max_tokens = 100;

Re: [E-devel] Ecore_Str new feature...

2007-03-12 Thread Tilman Sauerbeck
Stéphane Bauland [2007-03-12 14:56]: Brian Mattern wrote: On Mon, Mar 12, 2007 at 12:41:41PM +0100, Stéphane Bauland wrote: + * @param max_tokens The maximum number of strings to split string into. If this is less than 1, the string is split completely. + if (

Re: [E-devel] E CVS: libs/engrave davemds

2007-03-12 Thread dan sinclair
Enlightenment CVS wrote: Enlightenment CVS committal Author : davemds Project : e17 Module : libs/engrave @@ -452,10 +452,9 @@ font_key = engrave_part_state_text_font_get(eps); efont = engrave_file_font_by_name_find(ef, font_key); - font_name =

Re: [E-devel] Ecore_Str new feature...

2007-03-12 Thread Peter Wehrfritz
Vincent Torri schrieb: On Mon, 12 Mar 2007, Brian Mattern wrote: On Mon, Mar 12, 2007 at 12:41:41PM +0100, Stéphane Bauland wrote: Hi people. I needed a function to split a string into a list. My first func used Ecore_List * as return value, and dourse said me that's not really good.

Re: [E-devel] E CVS: libs/ecore pfritz

2007-03-12 Thread Stéphane Bauland
Enlightenment CVS wrote: Enlightenment CVS committal Author : pfritz Project : e17 Module : libs/ecore Dir : e17/libs/ecore/src/lib/ecore Modified Files: Ecore_Str.h ecore_str.c Log Message: add ecore_str_split(), thanks to rookmoot

Re: [E-devel] E CVS: libs/ecore pfritz

2007-03-12 Thread Michael Jennings
On Monday, 12 March 2007, at 21:06:46 (+0100), St?phane Bauland wrote: +char** +ecore_str_split(const char *string, const char *delimiter, int max_tokens) +{ + char **str_array = NULL; + char *s; + size_t n = 0; + int max = max_tokens; + const char *remainder; +

Re: [E-devel] E CVS: libs/engrave davemds

2007-03-12 Thread Dave
dan sinclair ha scritto: Enlightenment CVS wrote: Enlightenment CVS committal Author : davemds Project : e17 Module : libs/engrave @@ -452,10 +452,9 @@ font_key = engrave_part_state_text_font_get(eps); efont = engrave_file_font_by_name_find(ef,

Re: [E-devel] E CVS: libs/emotion raster

2007-03-12 Thread Nicolas Aguirre
Le Mon, 12 Mar 2007 21:30:44 -0500 (EST), Enlightenment CVS [EMAIL PROTECTED] a écrit : patch to fix emotion compilation with gstreamer I do this with cvs diff, don't know if it's the better way. Nicolas. Enlightenment CVS committal Author : raster Project : e17 Module : libs/emotion

Re: [E-devel] E CVS: libs/engrave davemds

2007-03-12 Thread Nathan Ingersoll
On 3/12/07, Dave [EMAIL PROTECTED] wrote: snprintf segv on null parameters? if yes I have to add another check Yes. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get

[E-devel] small patch to correct winlist mouse warp

2007-03-12 Thread Hannes Janetzek
Hi, i reused parts of e_winlist for a module and encouterd the problem that the warp-timer wont stop due to roundings to int. This patch fixes that. Regards, HannesIndex: e_winlist.c === RCS file:

Re: [E-devel] E CVS: libs/ecore pfritz

2007-03-12 Thread Peter Wehrfritz
Long and messy. Find better version attached. And as a bonus, you only have to free the array pointer and its first element. Quickie test program supplied also. Michael Thanks committed. It is indeed much faster. I changed it slightly, because your version had some problems with

[E-devel] Ecore configure.in checks

2007-03-12 Thread Christopher Michael
Hi All, Just a quick question about something I noticed. In the following snip from ecore/configure.in, shouldn't the $x_libs be -lXcursor ?? AC_CHECK_HEADER(X11/Xcursor/Xcursor.h, [ AC_CHECK_LIB(Xcursor, XcursorImageLoadCursor, [ AC_DEFINE(ECORE_XCURSOR, 1,

[E-devel] e16: composite menu doesnt come up anymore in cvs

2007-03-12 Thread Mike Frysinger
after reporting that Esetroot bug w/composite, i updated to current cvs ... now i cant get back into the composite menu to enable it ;( desktop - Settings menu - select Composite item - nothing it used to pop up the composite settings dialog ... -mike pgplMwRkgOy8y.pgp Description: PGP

Re: [E-devel] E CVS: libs/ecore devilhorns

2007-03-12 Thread Vincent Torri
I don't think that all the tests on _dpms_available are necessary. Your program has to test it once, then do the necessary to not use the dpms functions. Vincent On Tue, 13 Mar 2007, Enlightenment CVS wrote: Log Message: Fix up ecore_x_dpms...formatting, removed the static int's for dpms