[E-devel] Re: E CVS: libast technikolor

2004-08-20 Thread Michael Jennings
On Friday, 20 August 2004, at 00:15:27 (-0700),
E CVS List wrote:

 -AUTOHEADER_CHOICES=$AUTOHEADER autoheader213 autoheader-2.13 autoheader
 -ACLOCAL_CHOICES=$ACLOCAL aclocal14 aclocal-1.4 aclocal
 -AUTOMAKE_CHOICES=$AUTOMAKE automake14 automake-1.4 automake
 -AUTOCONF_CHOICES=$AUTOCONF autoconf213 autoconf-2.13 autoconf
 +AUTOHEADER_CHOICES=$AUTOHEADER autoheader259 autoheader-2.59 autoheader
 +ACLOCAL_CHOICES=$ACLOCAL aclocal18 aclocal-1.8 aclocal
 +AUTOMAKE_CHOICES=$AUTOMAKE automake18 automake-1.8 automake
 +AUTOCONF_CHOICES=$AUTOCONF autoconf259 autoconf-2.59 autoconf

What's the reason for this?  I had it set up specifically to prefer
those versions (autoconf 2.13 and automake 1.4).

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  [EMAIL PROTECTED]
n + 1, Inc., http://www.nplus1.net/   Author, Eterm (www.eterm.org)
---
 So here we are face to face and heart to heart.  I want you to know
  we will never be apart.  Now I believe that wishes can come true
  'cause I see my whole world; I see only you.  When I look into your
  eyes, I can see how much I love you, and it makes me realize.
-- Firehouse, When I Look into Your Eyes


---
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink  Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
___
enlightenment-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [PATCH] ecore_x_event_mask_(un)set and the root window fallback

2004-08-20 Thread Tilman Sauerbeck
Hi,
every function that's dealing with windows in ecore_x uses the root
window if the caller provides 0 for the window id.

I didn't check all of them, but at least one exception are the
ecore_x_event_mask_(un)set functions, which don't have this root window
fallback.

Should that fallback be put in these functions, too or is there a good
reason it's not in yet? :)

Patch attached, comments welcome ;p

-- 
Regards,
Tilman
Index: ecore_x_events.c
===
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_x/ecore_x_events.c,v
retrieving revision 1.31
diff -u -r1.31 ecore_x_events.c
--- ecore_x_events.c17 Aug 2004 20:10:28 -  1.31
+++ ecore_x_events.c20 Aug 2004 19:28:11 -
@@ -18,6 +18,9 @@
XWindowAttributes attr;
XSetWindowAttributes s_attr;
 
+   if (!w)
+  w = DefaultRootWindow(_ecore_x_disp);
+
memset(attr, 0, sizeof(XWindowAttributes));
XGetWindowAttributes(_ecore_x_disp, w, attr);
s_attr.event_mask = mask | attr.your_event_mask;
@@ -30,6 +33,9 @@
XWindowAttributes attr;
XSetWindowAttributes s_attr;
 
+   if (!w)
+  w = DefaultRootWindow(_ecore_x_disp);
+
memset(attr, 0, sizeof(XWindowAttributes));
XGetWindowAttributes(_ecore_x_disp, w, attr);
s_attr.event_mask = attr.your_event_mask  ~mask;