[E-devel] Monitor Module Patch 2-r4

2005-07-28 Thread Edward Presutti
This patch addresses a SEGV when configuration fails to load correctly. It is built against CVS as of 7/28/05 @ 01:45AM CST and adds all of the features of the previous patches. Please try it out and let me know how it works. -- Ed Presutti (ekrunch on freenode) -- understand, v.: To

Re: [E-devel] Monitor Module Patch 2-r4

2005-07-28 Thread Mathieu
Edward Presutti [EMAIL PROTECTED] disait dernièrement que : This patch addresses a SEGV when configuration fails to load correctly. It is built against CVS as of 7/28/05 @ 01:45AM CST and adds all of the features of the previous patches. Please try it out and let me know how it works. The

[E-devel] Gadman usage is strange between ibar (+ibox) and pager

2005-07-28 Thread FORT Yannick
I had noticed that some month ago, but totally forgotten, and as i had to reconfigure entierly my desktop due to profiles, i re-noticed that and decided to post' this mailing-list I found very strange the difference of configuration of the size of modules, the best example is that ibar (and

[E-devel] Patch to default_clock.edc

2005-07-28 Thread Christopher Wagner
This patch fixes the digital display of the e17 clock. Currently, durrint the first hour of the day (12AM) it displays the hour as 24 instead of 00. Don't know if it's the correct fix, but it seems right to me. Christopher Index: default_clock.edc

[E-devel] Eclair sig10 on FreeBSD 5.3

2005-07-28 Thread Shanker Balan
Hello, I get a reproducible sig10 with eclair (incld today's CVS) while doing the following action: Eclair - Open - Add Files - Click Scroll down Looks like the BSD pthread is the one causing the problem with the GTK file selector. GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software

[E-devel] Ecore_Dlist_Append bug.

2005-07-28 Thread Dylan Shell
Currently ecore_dlist_append has a bug in that it increments the list-nodes without considering whether it makes a previously invalid list-index valid. If this happens, the list has a valid index, and thus interprets the list-current member as pointing to node data. Here is code that shows

Re: [E-devel] Monitor Module Patch 2-r4

2005-07-28 Thread Edward Presutti
On Fri, July 29, 2005 1:14 am, Mathieu said: Edward Presutti [EMAIL PROTECTED] disait dernièrement que : This patch addresses a SEGV when configuration fails to load correctly. It is built against CVS as of 7/28/05 @ 01:45AM CST and adds all of the features of the previous patches. Please

[E-devel] E_Lib Desktop Add/Del Background Patch

2005-07-28 Thread Aaron Luptak
adds e_lib_desktop_background_{add,del}. I did container, zone, and desk_{x,y} as chars instead of int because E_Lib is already converting from char* to int, no need to make it do int-char*-int. I added these because I'm trying to add functionality to emblem to set individual desk bg's

Re: [E-devel] E_Lib Desktop Add/Del Background Patch

2005-07-28 Thread Tilman Sauerbeck
Aaron Luptak [EMAIL PROTECTED] [2005-07-28 18:50]: + char *params[5]; + if(!bgfile | !desk_y | !desk_x | !zone | !con) + return; + params[0] = strdup(con); [...] + free(params); That's broken. Don't free 'params', free params[0], params[1] etc. Also, you prolly should check

Re: [E-devel] E_Lib Desktop Add/Del Background Patch

2005-07-28 Thread Aaron Luptak
Tilman Sauerbeck wrote: Don't free 'params', free params[0], params[1] etc. Fixed in included patch. Also, you prolly should check that your strdup calls are succeeding. Added this too, even though none of the other E_Lib calls check their strdup()'s for success Aaron Index:

Re: [E-devel] E_Lib Desktop Add/Del Background Patch

2005-07-28 Thread dan sinclair
I have a feeling that using chars will just make stuff harder to deal with in the long run. We'll be getting counts of containers and zones back from e and we have to change the numbers to chars to call the set functions? I think it would be better to make this work with ints, even if it has to

Re: [E-devel] Monitor Module Patch 2-r4

2005-07-28 Thread Mathieu
Edward Presutti [EMAIL PROTECTED] disait dernièrement que : On Fri, July 29, 2005 1:14 am, Mathieu said: Edward Presutti [EMAIL PROTECTED] disait dernièrement que : This patch addresses a SEGV when configuration fails to load correctly. It is built against CVS as of 7/28/05 @ 01:45AM CST

Re: [E-devel] E_Lib Desktop Add/Del Background Patch

2005-07-28 Thread Aaron Luptak
dan sinclair wrote: I have a feeling that using chars will just make stuff harder to deal with in the long run. We'll be getting counts of containers and zones back from e and we have to change the numbers to chars to call the set functions? I think it would be better to make this work with

Re: [E-devel] E_Lib Desktop Add/Del Background Patch

2005-07-28 Thread The Rasterman
On Thu, 28 Jul 2005 23:13:07 -0800 Aaron Luptak [EMAIL PROTECTED] babbled: dan sinclair wrote: I have a feeling that using chars will just make stuff harder to deal with in the long run. We'll be getting counts of containers and zones back from e and we have to change the numbers to chars