E CVS: libs/evas raster

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/src/modules/engines/xrender_x11


Modified Files:
evas_engine_xrender.c 


Log Message:


doing some cleanups to xr engine

===
RCS file: 
/cvs/e/e17/libs/evas/src/modules/engines/xrender_x11/evas_engine_xrender.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -3 -r1.25 -r1.26
--- evas_engine_xrender.c   5 Nov 2006 06:04:51 -   1.25
+++ evas_engine_xrender.c   5 Nov 2006 09:28:50 -   1.26
@@ -320,10 +320,10 @@
 static void
 set_xtransform_scale(XTransform *t, int sw, int sh, int w, int h)
 {
-   if ((sw  1)  (w  1))
- { sw--;  w--; }
-   if ((sh  1)  (h  1))
- { sh--;  h--; }
+//   if ((sw  1)  (w  1))
+// { sw--;  w--; }
+//   if ((sh  1)  (h  1))
+// { sh--;  h--; }
t-matrix[0][0] = XDoubleToFixed((double)sw / (double)w);
t-matrix[1][1] = XDoubleToFixed((double)sh / (double)h);
 }
@@ -355,15 +355,15 @@
if (!srs-alpha) op = PictOpSrc;
  }
else if (dc-render_op == _EVAS_RENDER_BLEND_REL)
-   op = PictOpAtop;
+ op = PictOpAtop;
else if (dc-render_op == _EVAS_RENDER_MUL)
-   op = PictOpIn;
+ op = PictOpIn;
else if (dc-render_op == _EVAS_RENDER_COPY)
-   op = PictOpSrc;
+ op = PictOpSrc;
else if (dc-render_op == _EVAS_RENDER_COPY_REL)
-   op = PictOpIn;
+ op = PictOpIn;
else if (dc-render_op == _EVAS_RENDER_MASK)
-   op = PictOpInReverse;
+ op = PictOpInReverse;
 
if ((dc)  (dc-mul.use))
  {
@@ -403,7 +403,7 @@
trs = _xr_render_surface_new(srs-xinf, sw + e, sh + e,
 srs-fmt, srs-alpha);
  if (!trs) return;
-
+ 
  att.component_alpha = 1;
  XRenderChangePicture(srs-xinf-disp, mask, CPComponentAlpha, 
att);
  XRenderSetPictureTransform(srs-xinf-disp, srs-pic, xf);
@@ -445,54 +445,54 @@
  {
if (srs-bordered  is_scaling)
  {
-   trs = _xr_render_surface_new(srs-xinf, sw + 1, sh + 1,
-srs-fmt, srs-alpha);
-   if (!trs) return;
-
-   att.component_alpha = 0;
-   XRenderChangePicture(srs-xinf-disp, srs-pic, CPComponentAlpha, 
att);
-   XRenderSetPictureTransform(srs-xinf-disp, srs-pic, xf);
-   XRenderComposite(srs-xinf-disp, PictOpSrc, srs-pic, None,
-trs-pic, sx, sy, 0, 0, 0, 0, sw, sh);
-
-   XRenderComposite(srs-xinf-disp, PictOpSrc, srs-pic, None,
-trs-pic, sx + sw - 1, sy, 0, 0, sw, 0, 1, sh);
-   XRenderComposite(srs-xinf-disp, PictOpSrc, srs-pic, None,
-trs-pic, sx, sy + sh - 1, 0, 0, 0, sh, sw, 1);
-   XRenderComposite(srs-xinf-disp, PictOpSrc, srs-pic, None,
+trs = _xr_render_surface_new(srs-xinf, sw + 1, sh + 1,
+ srs-fmt, srs-alpha);
+if (!trs) return;
+
+att.component_alpha = 0;
+XRenderChangePicture(srs-xinf-disp, srs-pic, CPComponentAlpha, 
att);
+XRenderSetPictureTransform(srs-xinf-disp, srs-pic, xf);
+XRenderComposite(srs-xinf-disp, PictOpSrc, srs-pic, None,
+ trs-pic, sx, sy, 0, 0, 0, 0, sw, sh);
+
+XRenderComposite(srs-xinf-disp, PictOpSrc, srs-pic, None,
+ trs-pic, sx + sw - 1, sy, 0, 0, sw, 0, 1, sh);
+XRenderComposite(srs-xinf-disp, PictOpSrc, srs-pic, None,
+ trs-pic, sx, sy + sh - 1, 0, 0, 0, sh, sw, 1);
+XRenderComposite(srs-xinf-disp, PictOpSrc, srs-pic, None,
 trs-pic, sx + sw - 1, sy + sh - 1, 0, 0, sw, sh, 
1, 1);
-
-   XRenderSetPictureFilter(trs-xinf-disp, trs-pic, 
get_filter(smooth), NULL, 0);
-
-   set_xtransform_scale(xf, sw, sh, w, h);
-   XRenderSetPictureTransform(trs-xinf-disp, trs-pic, xf);
-
-   if (dc-render_op == _EVAS_RENDER_MUL)
- {
-   att.component_alpha = 1;
-   XRenderChangePicture(trs-xinf-disp, trs-pic, 
CPComponentAlpha, att);
- }
-
-   XRenderComposite(trs-xinf-disp, op, trs-pic, mask, drs-pic,
-0, 0, 0, 0, x, y, w, h);
-   _xr_render_surface_free(trs);
+
+XRenderSetPictureFilter(trs-xinf-disp, trs-pic, 
get_filter(smooth), NULL, 0);
+
+set_xtransform_scale(xf, sw, sh, w, h);
+XRenderSetPictureTransform(trs-xinf-disp, trs-pic, xf);
+
+if (dc-render_op == _EVAS_RENDER_MUL)
+  {
+ att.component_alpha = 1;
+ XRenderChangePicture(trs-xinf-disp, trs-pic, 
CPComponentAlpha, 

E CVS: apps/e kwo

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
configure.in 


Log Message:
Request gettext 0.12.1.

===
RCS file: /cvs/e/e17/apps/e/configure.in,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -3 -r1.142 -r1.143
--- configure.in3 Nov 2006 19:01:28 -   1.142
+++ configure.in5 Nov 2006 10:59:10 -   1.143
@@ -151,7 +151,7 @@
 AC_SUBST(ALL_LINGUAS)
 
 AM_GNU_GETTEXT([external])
-AM_GNU_GETTEXT_VERSION([0.14.6])
+AM_GNU_GETTEXT_VERSION([0.12.1])
 if test x$LIBINTL = x; then
   LIBINTL=$INTLLIBS
 fi



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e onefang

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : onefang
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_config_apps.c 


Log Message:
* Put the sort checkbox back, raster wasn't sure what it was used for, we 
discussed it.

* Remove the add app button, but not if our caller (like IBar) wanted 
something special.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_apps.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -3 -r1.35 -r1.36
--- e_int_config_apps.c 5 Nov 2006 03:31:45 -   1.35
+++ e_int_config_apps.c 5 Nov 2006 11:51:45 -   1.36
@@ -7,7 +7,6 @@
  * More filtering/sorting of left side to make managing thousands of apps easy.
  *
  * These things require support from e_fm -
- * DND from left side to righ side, and to ibar etc.
  * Stop user from deleting standard directories on right side.
  * Stop user from creating new directories on left side.
  */
@@ -592,22 +591,27 @@
  150, 220, /* min */
  9, 9 /* max */
  );
-/*
mt = e_widget_check_add(evas, _(Sort applications), (cfdata-sorted));
evas_object_smart_callback_add(mt, changed,
  _cb_files_sorted_changed, cfdata);
e_widget_framelist_object_append(of, mt);
-*/
+
+   mt = NULL;
if (once)
   mt = e_widget_button_add(evas, _(once-label), enlightenment/e,
   _cb_button_add, cfdata, NULL);
+/*
else
   mt = e_widget_button_add(evas, _(Add application...), 
enlightenment/e,
   _cb_button_add, cfdata, NULL);
-   cfdata-gui.o_add_button = mt;
+*/
+   if (mt)
+ {
+cfdata-gui.o_add_button = mt;
 
-   e_widget_framelist_object_append(of, mt);
-   e_widget_disabled_set(mt, 1);
+e_widget_framelist_object_append(of, mt);
+e_widget_disabled_set(mt, 1);
+ }
 
mt = e_widget_button_add(evas, _(Create a new application), 
enlightenment/e,
   _cb_button_create, cfdata, NULL);



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e onefang

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : onefang
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_fdo_menu_to_order.c 


Log Message:
Don't include any apps that are specifically for other window managers, but
do include any that are specifically for us.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_fdo_menu_to_order.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- e_fdo_menu_to_order.c   20 Oct 2006 22:32:30 -  1.19
+++ e_fdo_menu_to_order.c   5 Nov 2006 12:02:52 -   1.20
@@ -226,7 +226,10 @@
  desktop = ecore_desktop_get(path, NULL);
  /* Check if we process */
  if (!desktop) return;
- if ( (!desktop-hidden)  (!desktop-no_display)  ((desktop-type 
== NULL) || (strcmp(desktop-type, Application) == 0)) )
+ if ( (!desktop-hidden)  (!desktop-no_display) 
+((desktop-type == NULL) || (strcmp(desktop-type, 
Application) == 0)) 
+((desktop-OnlyShowIn == NULL) 
||(ecore_hash_get(desktop-OnlyShowIn, Enlightenment) != NULL))
+((desktop-NotShowIn == NULL) 
||(ecore_hash_get(desktop-NotShowIn, Enlightenment) == NULL)) )
 {
char *category;
   Ecore_Hash *menu;



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/eet kwo

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/eet

Dir : e17/libs/eet/src/lib


Modified Files:
Eet.h Eet_private.h eet_data.c eet_memfile.c 


Log Message:
Add const, fix warnings.

===
RCS file: /cvs/e/e17/libs/eet/src/lib/Eet.h,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -3 -r1.35 -r1.36
--- Eet.h   30 Sep 2006 18:42:57 -  1.35
+++ Eet.h   5 Nov 2006 12:14:08 -   1.36
@@ -758,7 +758,7 @@
 * function call.
 *
 */
-   EAPI void *eet_data_read(Eet_File *ef, Eet_Data_Descriptor *edd, char 
*name);
+   EAPI void *eet_data_read(Eet_File *ef, Eet_Data_Descriptor *edd, const char 
*name);
 
/**
 * Write a data structure from memory and store in an eet file.
===
RCS file: /cvs/e/e17/libs/eet/src/lib/Eet_private.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- Eet_private.h   13 Jun 2006 10:20:22 -  1.12
+++ Eet_private.h   5 Nov 2006 12:14:08 -   1.13
@@ -40,7 +40,7 @@
 void  _eet_memfile_read_close(FILE *f);
 FILE *_eet_memfile_write_open(void **data, size_t *size);
 void  _eet_memfile_write_close(FILE *f);
-void  _eet_memfile_shutdown();
+void  _eet_memfile_shutdown(void);
 
 #ifndef PATH_MAX
 #define PATH_MAX 4096
===
RCS file: /cvs/e/e17/libs/eet/src/lib/eet_data.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -3 -r1.38 -r1.39
--- eet_data.c  13 Jun 2006 10:20:22 -  1.38
+++ eet_data.c  5 Nov 2006 12:14:08 -   1.39
@@ -141,7 +141,7 @@
 static voideet_data_chunk_free(Eet_Data_Chunk *chnk);
 
 static Eet_Data_Stream *eet_data_stream_new(void);
-static void eet_data_stream_write(Eet_Data_Stream *ds, void *data, 
int size);
+static void eet_data_stream_write(Eet_Data_Stream *ds, const void 
*data, int size);
 static void eet_data_stream_free(Eet_Data_Stream *ds);
 
 static void eet_data_chunk_put(Eet_Data_Chunk *chnk, 
Eet_Data_Stream *ds);
@@ -542,7 +542,7 @@
 }
 
 static void
-eet_data_stream_write(Eet_Data_Stream *ds, void *data, int size)
+eet_data_stream_write(Eet_Data_Stream *ds, const void *data, int size)
 {
char *p;
 
@@ -823,7 +823,7 @@
 }
 
 EAPI void *
-eet_data_read(Eet_File *ef, Eet_Data_Descriptor *edd, char *name)
+eet_data_read(Eet_File *ef, Eet_Data_Descriptor *edd, const char *name)
 {
void *data_dec;
void *data;
===
RCS file: /cvs/e/e17/libs/eet/src/lib/eet_memfile.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- eet_memfile.c   4 Mar 2006 02:46:24 -   1.11
+++ eet_memfile.c   5 Nov 2006 12:14:08 -   1.12
@@ -5,7 +5,7 @@
 _eet_memfile_read_open(const void *data, size_t size)
 {
 #ifdef HAVE_FMEMOPEN
-   return (FILE *)fmemopen(data, size, rb);
+   return (FILE *)fmemopen((void*)data, size, rb);
 #else
FILE *f;
 



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e raster

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
TODO 


Log Message:


bug++

===
RCS file: /cvs/e/e17/apps/e/TODO,v
retrieving revision 1.503
retrieving revision 1.504
diff -u -3 -r1.503 -r1.504
--- TODO3 Nov 2006 06:11:55 -   1.503
+++ TODO5 Nov 2006 12:20:04 -   1.504
@@ -8,6 +8,12 @@
   BUGS / FIXES
 ---
 
+* apparently with locales other than english/c the about box textblock breaks
+  newlines on every word (maybe the utf8 decode patch? for evas?)
+* dnd to ibox, ibar, pager if module gagdets have autoscroll on makes the
+  dnd area the WHOLE region of the gadget object - not just the visible part,
+  so the dnd region is waay too big and may overlap eachother etc.
+
 ]]]
 
 [[[



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e onefang

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : onefang
Project : e17
Module  : apps/e

Dir : e17/apps/e


Modified Files:
TODO 


Log Message:
BUG++
CLEANUP++

===
RCS file: /cvs/e/e17/apps/e/TODO,v
retrieving revision 1.504
retrieving revision 1.505
diff -u -3 -r1.504 -r1.505
--- TODO5 Nov 2006 12:20:04 -   1.504
+++ TODO5 Nov 2006 12:23:48 -   1.505
@@ -13,7 +13,8 @@
 * dnd to ibox, ibar, pager if module gagdets have autoscroll on makes the
   dnd area the WHOLE region of the gadget object - not just the visible part,
   so the dnd region is waay too big and may overlap eachother etc.
-
+* IBar will resize itself down to single icon size on start/restart under some 
+  circumstances.
 ]]]
 
 [[[
@@ -101,6 +102,7 @@
 * desktop flip animations need to allow control over accel/decel and
   have a better ui - add wobble and controls etc. etc.
 * internal windows (config dialogs, etc) should re-open after a restart
+* .order file handling needs some going over, there is at least one bug.
 ]]]
 
 [[[



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/evas raster

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/src/modules/engines/xrender_x11


Modified Files:
evas_engine.h evas_engine_image.c evas_engine_xrender.c 


Log Message:


massively improve xrender scaling to be almost perfect. a few nigglies remain
though with transformed images (especailly with border scaling)

===
RCS file: /cvs/e/e17/libs/evas/src/modules/engines/xrender_x11/evas_engine.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- evas_engine.h   30 Sep 2006 10:18:36 -  1.6
+++ evas_engine.h   5 Nov 2006 12:51:23 -   1.7
@@ -73,8 +73,8 @@
 void _xr_render_surface_free(Xrender_Surface *rs);
 void _xr_render_surface_repeat_set(Xrender_Surface *rs, int 
repeat);
 void _xr_render_surface_solid_rectangle_set(Xrender_Surface *rs, 
int r, int g, int b, int a, int x, int y, int w, int h);
-void _xr_render_surface_argb_pixels_fill(Xrender_Surface *rs, int 
sw, int sh, void *pixels, int x, int y, int w, int h);
-void _xr_render_surface_rgb_pixels_fill(Xrender_Surface *rs, int 
sw, int sh, void *pixels, int x, int y, int w, int h);
+void _xr_render_surface_argb_pixels_fill(Xrender_Surface *rs, int 
sw, int sh, void *pixels, int x, int y, int w, int h, int ox, int oy);
+void _xr_render_surface_rgb_pixels_fill(Xrender_Surface *rs, int 
sw, int sh, void *pixels, int x, int y, int w, int h, int ox, int oy);
 void _xr_render_surface_clips_set(Xrender_Surface *rs, 
RGBA_Draw_Context *dc, int rx, int ry, int rw, int rh);
 void _xr_render_surface_composite(Xrender_Surface *srs, 
Xrender_Surface *drs, RGBA_Draw_Context *dc, int sx, int sy, int sw, int sh, 
int x, int y, int w, int h, int smooth);
 void _xr_render_surface_copy(Xrender_Surface *srs, Xrender_Surface 
*drs, int sx, int sy, int x, int y, int w, int h);
===
RCS file: 
/cvs/e/e17/libs/evas/src/modules/engines/xrender_x11/evas_engine_image.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- evas_engine_image.c 18 Aug 2006 14:45:25 -  1.7
+++ evas_engine_image.c 5 Nov 2006 12:51:23 -   1.8
@@ -281,6 +281,7 @@
 void
 _xre_image_resize(XR_Image *im, int w, int h)
 {
+   /* FIXME: ... */
if ((w == im-w)  (h == im-h)) return;
if (im-surface)
  {
@@ -290,10 +291,18 @@
ww = w; hh = h;
RECTS_CLIP_TO_RECT(x, y, ww, hh, 0, 0, im-w, im-h);
old_surface = im-surface;
-   im-surface = _xr_render_surface_new(old_surface-xinf, w + 1, h + 1, 
old_surface-fmt, old_surface-alpha);
+   im-surface = _xr_render_surface_new(old_surface-xinf, w + 2, h + 2, 
old_surface-fmt, old_surface-alpha);
if (im-surface)
- _xr_render_surface_copy(old_surface, im-surface, 0, 0, 0, 0, ww, hh);
+ _xr_render_surface_copy(old_surface, im-surface, 0, 0, 0, 0, ww + 1, 
hh + 1);
_xr_render_surface_free(old_surface);
+   _xr_render_surface_copy(im-surface, im-surface, 
+   ww, 1, 
+   ww + 1, 1, 
+   1, hh);
+   _xr_render_surface_copy(im-surface, im-surface, 
+   0, hh, 
+   0, hh + 1, 
+   ww + 2, 1);
  }
if (im-data)
  {
@@ -462,11 +471,11 @@
old_surface = im-surface;
im-surface = NULL;
if (im-alpha)
- im-surface = _xr_render_surface_new(im-xinf, im-w + 1, im-h + 1, 
im-xinf-fmt32, 1);
+ im-surface = _xr_render_surface_new(im-xinf, im-w + 2, im-h + 2, 
im-xinf-fmt32, 1);
else
- im-surface = _xr_render_surface_new(im-xinf, im-w + 1, im-h + 1, 
im-xinf-fmt24, 0);
+ im-surface = _xr_render_surface_new(im-xinf, im-w + 2, im-h + 2, 
im-xinf-fmt24, 0);
if (im-surface)
- _xr_render_surface_copy(old_surface, im-surface, 0, 0, 0, 0, im-w + 
1, im-h + 1);
+ _xr_render_surface_copy(old_surface, im-surface, 0, 0, 0, 0, im-w + 
2, im-h + 2);
_xr_render_surface_free(old_surface);
  }
if (im-updates)
@@ -538,9 +547,9 @@
   rx = r-x; ry = r-y; rw = r-w, rh = r-h;
   RECTS_CLIP_TO_RECT(rx, ry, rw, rh, 0, 0, im-w, im-h);
   if (im-alpha)
-_xr_render_surface_argb_pixels_fill(im-surface, 
im-w, im-h, data, rx, ry, rw, rh);
+_xr_render_surface_argb_pixels_fill(im-surface, 
im-w, im-h, data, rx, ry, rw, rh, 1, 1);
   else
-_xr_render_surface_rgb_pixels_fill(im-surface, im-w, 
im-h, data, rx, ry, rw, rh);
+_xr_render_surface_rgb_pixels_fill(im-surface, im-w, 
im-h, data, rx, ry, rw, rh, 

E CVS: libs/evas raster

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

Dir : e17/libs/evas/src/modules/engines/xrender_x11


Modified Files:
evas_engine_xrender.c 


Log Message:


and fix final off-by-a-bit in the xform.

===
RCS file: 
/cvs/e/e17/libs/evas/src/modules/engines/xrender_x11/evas_engine_xrender.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- evas_engine_xrender.c   5 Nov 2006 12:51:23 -   1.27
+++ evas_engine_xrender.c   5 Nov 2006 12:53:25 -   1.28
@@ -326,8 +326,8 @@
 // { sh--;  h--; }
t-matrix[0][0] = XDoubleToFixed((double)(sw) / (double)(w));
t-matrix[1][1] = XDoubleToFixed((double)(sh) / (double)(h));
-   t-matrix[2][0] = tx;
-   t-matrix[2][1] = ty;
+   t-matrix[2][0] = (tx * sw) / w;
+   t-matrix[2][1] = (ty * sh) / h;
 }
 
 // when color multiplier is used want: instead



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore kwo

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/bin


Modified Files:
ecore_config.c 


Log Message:
Add some static's.

===
RCS file: /cvs/e/e17/libs/ecore/src/bin/ecore_config.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- ecore_config.c  28 Oct 2006 11:41:53 -  1.11
+++ ecore_config.c  5 Nov 2006 13:08:37 -   1.12
@@ -14,7 +14,7 @@
 #include ecore_config_private.h
 
 // strcmp for paths - for sorting folders before files
-int
+static int
 pathcmp(const char *s1, const char *s2)
 {
char *s1d, *s2d;
@@ -43,7 +43,7 @@
return strcmp(s1, s2);
 }
 
-int
+static int
 del(const char *key)
 {
Ecore_Config_Prop *e;
@@ -54,7 +54,7 @@
return 0;
 }
 
-int
+static int
 get(const char *key)
 {
Ecore_Config_Prop *e;
@@ -103,7 +103,7 @@
return 0;
 }
 
-int
+static int
 list(const char *file)
 {
char *key;
@@ -141,7 +141,7 @@
return 0;
 }
 
-void
+static void
 usage_and_exit(const char *prog, int ret, const char *msg)
 {
if (msg) fprintf(stderr, %s\n\n, msg);



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: proto kaethorn

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kaethorn
Project : e17
Module  : proto

Dir : e17/proto/entropy/debian


Modified Files:
rules 
Removed Files:
entropy.install 


Log Message:
fix debian packaging.

===
RCS file: /cvs/e/e17/proto/entropy/debian/rules,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- rules   20 Oct 2006 07:57:07 -  1.2
+++ rules   5 Nov 2006 13:59:49 -   1.3
@@ -8,3 +8,7 @@
 clean::
if [ -f $(CURDIR)/../../snapshot ]; then ./autogen.sh --prefix=/usr; fi
 
+install/entropy::
+   find debian/entropy/ -name '*.la' -exec rm {} \;
+   find debian/entropy/ -name '*.a' -exec rm {} \;
+



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e kaethorn

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kaethorn
Project : e17
Module  : apps/e

Dir : e17/apps/e/debian


Modified Files:
enlightenment.install 


Log Message:
remove eap_to_desktop from debian package.

===
RCS file: /cvs/e/e17/apps/e/debian/enlightenment.install,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- enlightenment.install   23 Oct 2006 23:10:04 -  1.15
+++ enlightenment.install   5 Nov 2006 14:01:53 -   1.16
@@ -1,6 +1,5 @@
 debian/tmp/usr/bin/enlightenment
 debian/tmp/usr/bin/enlightenment_*
-debian/tmp/usr/bin/eap_to_desktop
 debian/tmp/usr/lib/enlightenment/modules/battery/*/*.so
 debian/tmp/usr/lib/enlightenment/modules/battery/*.desktop
 debian/tmp/usr/lib/enlightenment/modules/battery/*.edj



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore kwo

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_config


Modified Files:
ecore_config.c 


Log Message:
No void pointer arithmetic.

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_config/ecore_config.c,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -3 -r1.78 -r1.79
--- ecore_config.c  7 Sep 2006 08:40:28 -   1.78
+++ ecore_config.c  5 Nov 2006 14:18:34 -   1.79
@@ -1302,7 +1302,7 @@
 {
Ecore_Config_Prop *e, *f;
Evas_List *l;
-   void *ptr;
+   unsigned char *ptr;
long argb;
 
e = ecore_config_get(key);



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore kwo

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_ipc


Modified Files:
ecore_ipc.c 


Log Message:
Fix warnings.

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_ipc/ecore_ipc.c,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -3 -r1.39 -r1.40
--- ecore_ipc.c 2 Jun 2006 08:06:46 -   1.39
+++ ecore_ipc.c 5 Nov 2006 14:19:56 -   1.40
@@ -1147,8 +1147,6 @@
  }
else
  {
-unsigned char *buf;
-
 buf = realloc(cl-buf, cl-buf_size + e-size);
 if (!buf)
   {
@@ -1341,8 +1339,6 @@
  }
else
  {
-unsigned char *buf;
-
 buf = realloc(svr-buf, svr-buf_size + e-size);
 if (!buf)
   {



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore kwo

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_config


Modified Files:
Ecore_Config.h ecore_config_ipc_main.c ecore_config_private.h 


Log Message:
Fix warnings.

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_config/Ecore_Config.h,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -3 -r1.53 -r1.54
--- Ecore_Config.h  16 Aug 2006 17:40:08 -  1.53
+++ Ecore_Config.h  5 Nov 2006 14:19:56 -   1.54
@@ -189,6 +189,7 @@
EAPI int ecore_config_struct_default(const char *key);
EAPI int ecore_config_struct_int_add(const char *key, const 
char *name, int val);
EAPI int ecore_config_struct_float_add(const char *key, 
const char *name, float val);
+   EAPI int ecore_config_struct_create(const char *key);
EAPI int ecore_config_struct_string_add(const char *key, 
const char *name, const char* val);
EAPI int ecore_config_struct_theme_add(const char *key, 
const char *name, const char* val);
EAPI int ecore_config_struct_argb_add(const char *key, 
const char *name, int a, int r, int g, int b);
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_config/ecore_config_ipc_main.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- ecore_config_ipc_main.c 6 Jan 2006 18:26:36 -   1.9
+++ ecore_config_ipc_main.c 5 Nov 2006 14:19:56 -   1.10
@@ -21,10 +21,6 @@
 static Ecore_Config_Server *__ecore_config_servers;
 Ecore_Timer *ipc_timer = NULL;
 
-extern int _ecore_config_ipc_ecore_init(const char *pipe_name, void **data);
-extern int _ecore_config_ipc_ecore_exit(void **data);
-extern int _ecore_config_ipc_ecore_poll(void **data);
-
 Ecore_Config_Server *
 _ecore_config_server_convert(void *srv)
 {
@@ -213,7 +209,7 @@
 }
 
 static int
-_ecore_config_ipc_poll(void *data)
+_ecore_config_ipc_poll(void *data __UNUSED__)
 {
Ecore_Config_Server *s;
 
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_config/ecore_config_private.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- ecore_config_private.h  31 Jan 2006 11:05:47 -  1.11
+++ ecore_config_private.h  5 Nov 2006 14:19:56 -   1.12
@@ -35,6 +35,10 @@
 float _ecore_config_float_get(Ecore_Config_Prop *e);
 char *_ecore_config_theme_get(Ecore_Config_Prop *e);
 
+int   _ecore_config_ipc_ecore_init(const char *pipe_name, void 
**data);
+int   _ecore_config_ipc_ecore_exit(void **data);
+int   _ecore_config_ipc_ecore_poll(void **data);
+
 #include ecore_private.h
 
 #endif



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore kwo

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_x


Modified Files:
Ecore_X.h ecore_x.c ecore_x_dnd.c ecore_x_events.c 
ecore_x_netwm.c ecore_x_private.h ecore_x_screensaver.c 
ecore_x_selection.c ecore_x_window_prop.c 


Log Message:
Selection data should be untyped. Add const. Fix warnings.

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/Ecore_X.h,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -3 -r1.174 -r1.175
--- Ecore_X.h   29 Sep 2006 05:49:13 -  1.174
+++ Ecore_X.h   5 Nov 2006 15:14:49 -   1.175
@@ -986,23 +986,23 @@
 EAPI void ecore_x_event_mask_set(Ecore_X_Window w, 
Ecore_X_Event_Mask mask);
 EAPI void ecore_x_event_mask_unset(Ecore_X_Window w, 
Ecore_X_Event_Mask mask);
 
-EAPI int  ecore_x_selection_primary_set(Ecore_X_Window w, unsigned 
char *data, int size);
+EAPI int  ecore_x_selection_primary_set(Ecore_X_Window w, const 
void *data, int size);
 EAPI int  ecore_x_selection_primary_clear(void);
-EAPI int  ecore_x_selection_secondary_set(Ecore_X_Window w, 
unsigned char *data, int size);
+EAPI int  ecore_x_selection_secondary_set(Ecore_X_Window w, const 
void *data, int size);
 EAPI int  ecore_x_selection_secondary_clear(void);
-EAPI int  ecore_x_selection_xdnd_set(Ecore_X_Window w, unsigned 
char *data, int size);
+EAPI int  ecore_x_selection_xdnd_set(Ecore_X_Window w, const void 
*data, int size);
 EAPI int  ecore_x_selection_xdnd_clear(void);
-EAPI int  ecore_x_selection_clipboard_set(Ecore_X_Window w, 
unsigned char *data, int size);
+EAPI int  ecore_x_selection_clipboard_set(Ecore_X_Window w, const 
void *data, int size);
 EAPI int  ecore_x_selection_clipboard_clear(void);
-EAPI void ecore_x_selection_primary_request(Ecore_X_Window w, char 
*target);
-EAPI void ecore_x_selection_secondary_request(Ecore_X_Window w, 
char *target);
-EAPI void ecore_x_selection_xdnd_request(Ecore_X_Window w, char 
*target);
-EAPI void ecore_x_selection_clipboard_request(Ecore_X_Window w, 
char *target);
+EAPI void ecore_x_selection_primary_request(Ecore_X_Window w, 
const char *target);
+EAPI void ecore_x_selection_secondary_request(Ecore_X_Window w, 
const char *target);
+EAPI void ecore_x_selection_xdnd_request(Ecore_X_Window w, const 
char *target);
+EAPI void ecore_x_selection_clipboard_request(Ecore_X_Window w, 
const char *target);
 EAPI void ecore_x_selection_converter_add(char *target, int 
(*func)(char *target, void *data, int size, void **data_ret, int *size_ret));
 EAPI void ecore_x_selection_converter_atom_add(Ecore_X_Atom 
target, int (*func)(char *target, void *data, int size, void **data_ret, int 
*size_ret));
 EAPI void ecore_x_selection_converter_del(char *target);
 EAPI void ecore_x_selection_converter_atom_del(Ecore_X_Atom 
target);
-EAPI void ecore_x_selection_parser_add(const char *target, void 
*(*func)(const char *target, unsigned char *data, int size, int format));
+EAPI void ecore_x_selection_parser_add(const char *target, void 
*(*func)(const char *target, void *data, int size, int format));
 EAPI void ecore_x_selection_parser_del(const char *target);
 
 EAPI void ecore_x_dnd_aware_set(Ecore_X_Window win, int on);
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/ecore_x.c,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -3 -r1.116 -r1.117
--- ecore_x.c   30 Sep 2006 10:18:31 -  1.116
+++ ecore_x.c   5 Nov 2006 15:14:49 -   1.117
@@ -603,9 +603,9 @@
 EAPI void
 ecore_x_killall(Ecore_X_Window root)
 {
-   int screens;
-   int i, j;
-   
+   unsigned int screens;
+   unsigned int i, j;
+
XGrabServer(_ecore_x_disp);
screens = ScreenCount(_ecore_x_disp);
 
@@ -1364,6 +1364,8 @@
 {
 #ifdef ECORE_XCURSOR
XcursorSetDefaultSize(_ecore_x_disp, size);
+#else
+   size = 0;
 #endif
 }
 
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_x/ecore_x_dnd.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -3 -r1.29 -r1.30
--- ecore_x_dnd.c   6 Jan 2006 21:56:05 -   1.29
+++ ecore_x_dnd.c   5 Nov 2006 15:14:49 -   1.30
@@ -232,7 +232,7 @@
 ecore_x_dnd_types_set(Ecore_X_Window win, char **types, unsigned int num_types)
 {
Ecore_X_Atom  *newset = NULL;
-   int   i;
+   unsigned int  i;
unsigned char *data = NULL;
 
if (!num_types)
@@ -449,7 +449,7 @@
 ecore_x_dnd_version_get(win));

E CVS: libs/ecore kwo

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_evas


Modified Files:
Ecore_Evas.h ecore_evas_directfb.c ecore_evas_fb.c 
ecore_evas_x.c 


Log Message:
Fix warnings.

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_evas/Ecore_Evas.h,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- Ecore_Evas.h27 Jul 2006 16:14:33 -  1.21
+++ Ecore_Evas.h5 Nov 2006 15:22:47 -   1.22
@@ -110,6 +110,7 @@
 EAPI Ecore_Evas *ecore_evas_fb_new(char *disp_name, int rotation, int w, 
int h);
 
 EAPI Ecore_Evas *ecore_evas_directfb_new(const char *disp_name, int 
windowed, int x, int y, int w, int h);
+EAPI Ecore_DirectFB_Window *ecore_evas_directfb_window_get(Ecore_Evas *ee);
 
 EAPI Ecore_Evas *ecore_evas_buffer_new(int w, int h);
 EAPI const int  *ecore_evas_buffer_pixels_get(Ecore_Evas *ee);
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_evas/ecore_evas_directfb.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- ecore_evas_directfb.c   27 Jul 2006 16:14:33 -  1.7
+++ ecore_evas_directfb.c   5 Nov 2006 15:22:47 -   1.8
@@ -549,6 +549,7 @@
 #ifdef BUILD_ECORE_EVAS_DIRECTFB
return ee-engine.directfb.window;
 #else
+   ee = NULL;
return NULL;
 #endif   
 }
@@ -610,6 +611,8 @@

return ee;
 #else
+   disp_name = NULL;
+   windowed = x = y = w = h = 0;
return NULL;
 #endif   
 }
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_evas/ecore_evas_fb.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- ecore_evas_fb.c 20 Oct 2006 01:46:41 -  1.21
+++ ecore_evas_fb.c 5 Nov 2006 15:22:47 -   1.22
@@ -637,6 +637,8 @@
ecore_evases = _ecore_list2_prepend(ecore_evases, ee);
return ee;
 #else
+   disp_name = NULL;
+   rotation = w = h = 0;
return NULL;
 #endif   
 }
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_evas/ecore_evas_x.c,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -3 -r1.91 -r1.92
--- ecore_evas_x.c  10 Sep 2006 00:24:57 -  1.91
+++ ecore_evas_x.c  5 Nov 2006 15:22:47 -   1.92
@@ -2148,7 +2148,7 @@
/* NB: on linux this may simply empty the env as opposed to completely
 * unset it to being empty - unsure as solartis libc crashes looking 
 * for the '=' char */
-   putenv(DESKTOP_STARTUP_ID=);
+   putenv((char*)DESKTOP_STARTUP_ID=);
  }
einfo = (Evas_Engine_Info_Software_X11 *)evas_engine_info_get(ee-evas);
if (einfo)
@@ -2398,7 +2398,7 @@
/* NB: on linux this may simply empty the env as opposed to completely
 * unset it to being empty - unsure as solartis libc crashes looking 
 * for the '=' char */
-   putenv(DESKTOP_STARTUP_ID=);
+   putenv((char*)DESKTOP_STARTUP_ID=);
  }
evas_key_modifier_add(ee-evas, Shift);
evas_key_modifier_add(ee-evas, Control);
@@ -2414,6 +2414,9 @@
ecore_evases_hash = evas_hash_add(ecore_evases_hash, 
_ecore_evas_x_winid_str_get(ee-engine.x.win), ee);
return ee;
 #else
+   disp_name = NULL;
+   parent = 0;
+   x = y = w = h = 0;
return NULL;
 #endif
 }
@@ -2548,7 +2551,7 @@
/* NB: on linux this may simply empty the env as opposed to completely
 * unset it to being empty - unsure as solartis libc crashes looking 
 * for the '=' char */
-   putenv(DESKTOP_STARTUP_ID=);
+   putenv((char*)DESKTOP_STARTUP_ID=);
  }
einfo = (Evas_Engine_Info_XRender_X11 *)evas_engine_info_get(ee-evas);
if (einfo)



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore kwo

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_file


Modified Files:
ecore_file_download.c ecore_file_monitor_inotify.c 


Log Message:
Fix warnings.

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_file/ecore_file_download.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- ecore_file_download.c   8 Sep 2006 16:52:29 -   1.10
+++ ecore_file_download.c   5 Nov 2006 16:34:30 -   1.11
@@ -144,6 +144,11 @@
  {
return 0;
  }
+#ifndef HAVE_CURL
+   completion_cb = NULL;
+   progress_cb = NULL;
+   data = NULL;
+#endif
 }
 
 EAPI int
===
RCS file: 
/cvs/e/e17/libs/ecore/src/lib/ecore_file/ecore_file_monitor_inotify.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- ecore_file_monitor_inotify.c6 Sep 2006 07:10:25 -   1.11
+++ ecore_file_monitor_inotify.c5 Nov 2006 16:34:30 -   1.12
@@ -150,7 +150,7 @@
 }
 
 static int
-_ecore_file_monitor_inotify_handler(void *data, Ecore_Fd_Handler *fdh)
+_ecore_file_monitor_inotify_handler(void *data __UNUSED__, Ecore_Fd_Handler 
*fdh)
 {
Ecore_File_Monitor *em;
char buffer[16384];



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ecore kwo

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore


Modified Files:
Ecore_Data.h ecore_events.c ecore_exe.c ecore_hash.c 


Log Message:
Add const, fix warnings.

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/Ecore_Data.h,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- Ecore_Data.h27 Oct 2006 03:52:28 -  1.23
+++ Ecore_Data.h5 Nov 2006 16:42:30 -   1.24
@@ -243,7 +243,7 @@
/* Retrieve and store data into the hash */
EAPI void *ecore_hash_get(Ecore_Hash *hash, const void *key);
EAPI int ecore_hash_set(Ecore_Hash *hash, void *key, void *value);
-   EAPI void *ecore_hash_remove(Ecore_Hash *hash, void *key);
+   EAPI void *ecore_hash_remove(Ecore_Hash *hash, const void *key);
EAPI void ecore_hash_dump_graph(Ecore_Hash *hash);
 
 
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/ecore_events.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- ecore_events.c  23 Jun 2006 06:38:52 -  1.23
+++ ecore_events.c  5 Nov 2006 16:42:30 -   1.24
@@ -380,8 +380,6 @@
   ef-loop_data = ef-func_start(ef-data);
 for (ll = (Ecore_List2 *)events; ll; ll = ll-next)
   {
- Ecore_Event *e;
- 
  e = (Ecore_Event *)ll;
  if (!ef-func_filter(ef-loop_data, ef-data,
   e-type, e-event))
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/ecore_exe.c,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -3 -r1.65 -r1.66
--- ecore_exe.c 29 Jul 2006 10:05:13 -  1.65
+++ ecore_exe.c 5 Nov 2006 16:42:30 -   1.66
@@ -52,12 +52,12 @@
 EAPI intECORE_EXE_EVENT_ERROR = 0;
 
 static Ecore_Exe   *exes = NULL;
-static char*shell = NULL;
+static const char  *shell = NULL;
 
 /* FIXME: This errno checking stuff should be put elsewhere for everybody to 
use.
  * For now it lives here though, just to make testing easier.
  */
-static int  _ecore_exe_check_errno(int result, char *file, int line);
+static int  _ecore_exe_check_errno(int result, const char *file, int 
line);
 
 #define E_IF_NO_ERRNO(result, foo, ok) \
   while (((ok) = _ecore_exe_check_errno( (result) = (foo), __FILE__, 
__LINE__)) == -1)   sleep(1); \
@@ -70,7 +70,7 @@
   if (((ok) = _ecore_exe_check_errno( (result) = (foo), __FILE__, __LINE__)))
 
 static int
-_ecore_exe_check_errno(int result, char *file, int line)
+_ecore_exe_check_errno(int result, const char *file, int line)
 {
int saved_errno = errno;
 
@@ -306,7 +306,9 @@
 
/*  Create some pipes. */
if (ok)
-  E_IF_NO_ERRNO_NOLOOP(result, pipe(statusPipe), ok);
+  E_IF_NO_ERRNO_NOLOOP(result, pipe(statusPipe), ok)
+ {
+ }
if (ok  (flags  ECORE_EXE_PIPE_ERROR))
   E_IF_NO_ERRNO_NOLOOP(result, pipe(errorPipe), ok)
  {
@@ -432,13 +434,13 @@
{   /* Setup the error stuff. */
   E_IF_NO_ERRNO(result,
 fcntl(exe-child_fd_error, F_SETFL,
-  O_NONBLOCK), ok);
+  O_NONBLOCK), ok) {}
   E_IF_NO_ERRNO(result,
 fcntl(exe-child_fd_error, F_SETFD,
-  FD_CLOEXEC), ok);
+  FD_CLOEXEC), ok) {}
   E_IF_NO_ERRNO(result,
 fcntl(exe-child_fd_error_x, F_SETFD,
-  FD_CLOEXEC), ok);
+  FD_CLOEXEC), ok) {}
   {
  exe-error_fd_handler =
 ecore_main_fd_handler_add(exe-child_fd_error,
@@ -453,13 +455,13 @@
{   /* Setup the read stuff. */
   E_IF_NO_ERRNO(result,
 fcntl(exe-child_fd_read, F_SETFL,
-  O_NONBLOCK), ok);
+  O_NONBLOCK), ok) {}
   E_IF_NO_ERRNO(result,
 fcntl(exe-child_fd_read, F_SETFD,
-  FD_CLOEXEC), ok);
+  FD_CLOEXEC), ok) {}
   E_IF_NO_ERRNO(result,
 fcntl(exe-child_fd_read_x, F_SETFD,
-  FD_CLOEXEC), ok);
+  FD_CLOEXEC), ok) {}
   {

E CVS: libs/ecore kwo

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_con


Modified Files:
Ecore_Con.h ecore_con.c ecore_con_dns.c ecore_con_private.h 
ecore_con_url.c 


Log Message:
Add const, fix warnings.

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_con/Ecore_Con.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -3 -r1.22 -r1.23
--- Ecore_Con.h 24 Sep 2006 08:16:01 -  1.22
+++ Ecore_Con.h 5 Nov 2006 16:49:55 -   1.23
@@ -152,7 +152,7 @@
EAPI void *ecore_con_server_data_get(Ecore_Con_Server *svr);
EAPI int   ecore_con_server_connected_get(Ecore_Con_Server 
*svr);
EAPI Ecore_List   *ecore_con_server_clients_get(Ecore_Con_Server *svr);
-   EAPI int   ecore_con_server_send(Ecore_Con_Server *svr, void 
*data, int size);
+   EAPI int   ecore_con_server_send(Ecore_Con_Server *svr, const 
void *data, int size);
EAPI void  ecore_con_server_client_limit_set(Ecore_Con_Server 
*svr, int client_limit, char reject_excess_clients);
EAPI char *ecore_con_server_ip_get(Ecore_Con_Server *svr);

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_con/ecore_con.c,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -3 -r1.82 -r1.83
--- ecore_con.c 25 Sep 2006 05:21:14 -  1.82
+++ ecore_con.c 5 Nov 2006 16:49:55 -   1.83
@@ -50,7 +50,9 @@
 
 static Ecore_List *servers = NULL;
 static int init_count = 0;
+#if USE_OPENSSL
 static int ssl_init_count = 0;
+#endif
 
 #define LENGTH_OF_SOCKADDR_UN(s) (strlen((s)-sun_path) + (size_t)(((struct 
sockaddr_un *)NULL)-sun_path))
 #define LENGTH_OF_ABSTRACT_SOCKADDR_UN(s, path) (strlen(path) + 1 + 
(size_t)(((struct sockaddr_un *)NULL)-sun_path))
@@ -647,7 +649,7 @@
  * @ingroup Ecore_Con_Server_Group
  */
 EAPI int
-ecore_con_server_send(Ecore_Con_Server *svr, void *data, int size)
+ecore_con_server_send(Ecore_Con_Server *svr, const void *data, int size)
 {
if (!ECORE_MAGIC_CHECK(svr, ECORE_MAGIC_CON_SERVER))
  {
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_con/ecore_con_dns.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- ecore_con_dns.c 12 Aug 2006 14:38:03 -  1.27
+++ ecore_con_dns.c 5 Nov 2006 16:49:55 -   1.28
@@ -28,6 +28,7 @@
  */
 #include Ecore.h
 #include ecore_private.h
+#include ecore_con_private.h
 
 #include ctype.h
 #include netinet/in.h
@@ -72,6 +73,7 @@
  struct hostent *he;
 };
 
+#if 0
 static void _ecore_con_dns_ghbn(Ecore_Con_Dns_Query *query, const char 
*hostname);
 static int  _ecore_con_dns_timeout(void *data);
 static int  _ecore_con_cb_fd_handler(void *data, Ecore_Fd_Handler *fd_handler);
@@ -79,9 +81,11 @@
 static void _ecore_con_dns_cache_free(Ecore_Con_Dns_Cache *cache);
 static int  _ecore_con_hostname_get(unsigned char *buf, char *hostname,
int pos, int length);
+#endif
 
 static int dns_init = 0;
 
+#if 0
 static struct in_addr servers[SERVERS];
 static intserver_count;
 
@@ -93,6 +97,7 @@
 static uint16_t dns_id = 0;
 
 static Ecore_Con_Dns_Cache *dns_cache = NULL;
+#endif
 
 #define SET_16BIT(p, v) \
(((p)[0]) = ((v)  8)  0xff), \
@@ -321,7 +326,7 @@
 }
 
 static int
-_ecore_con_dns_exit_handler(void *data, int type, void *event)
+_ecore_con_dns_exit_handler(void *data, int type __UNUSED__, void *event)
 {
CB_Data *cbdata;
Ecore_Exe_Event_Del *ev;
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_con/ecore_con_private.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- ecore_con_private.h 24 Sep 2006 08:16:02 -  1.17
+++ ecore_con_private.h 5 Nov 2006 16:49:55 -   1.18
@@ -1,6 +1,7 @@
 #ifndef _ECORE_CON_PRIVATE_H
 #define _ECORE_CON_PRIVATE_H
 
+#include Ecore_Con.h
 #include Ecore_Data.h
 
 #define ECORE_MAGIC_CON_SERVER 0x77665544
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_con/ecore_con_url.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- ecore_con_url.c 24 Sep 2006 08:16:02 -  1.10
+++ ecore_con_url.c 5 Nov 2006 16:49:55 -   1.11
@@ -163,6 +163,7 @@
 
return url_con;
 #else
+   url = NULL;
return NULL;
 #endif
 }
@@ -184,6 +185,8 @@
curl_slist_free_all(url_con-headers);
free(url_con-url);
free(url_con);
+#else
+   url_con = NULL;
 #endif
 }
 
@@ -198,7 +201,9 @@
if (url)
  url_con-url = strdup(url);
curl_easy_setopt(url_con-curl_easy, CURLOPT_URL, url_con-url);
-
+#else
+   url_con = NULL;
+   url = NULL;
 #endif
return 1;
 }

E CVS: libs/ecore kwo

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/ecore

Dir : e17/libs/ecore/src/lib/ecore_dbus


Modified Files:
Ecore_DBus.h ecore_dbus.c ecore_dbus_address.c 
ecore_dbus_marshal.c ecore_dbus_message.c ecore_dbus_object.c 
ecore_dbus_private.h ecore_dbus_unmarshal.c 


Log Message:
Add const, fix warnings.

===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_dbus/Ecore_DBus.h,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- Ecore_DBus.h29 Sep 2006 03:05:21 -  1.21
+++ Ecore_DBus.h5 Nov 2006 17:45:03 -   1.22
@@ -194,27 +194,27 @@
 
 
/* message */
-   EAPI int   ecore_dbus_server_send(Ecore_DBus_Server *svr, char 
*command, int length);
+   EAPI int   ecore_dbus_server_send(Ecore_DBus_Server *svr, const 
char *command, int length);
 
EAPI unsigned int ecore_dbus_message_new_method_call(Ecore_DBus_Server 
*svr, 
-char *path, char *interface,
-char *method, char *destination, 
+const char *path, const char 
*interface,
+const char *method, const char 
*destination, 
 Ecore_DBus_Method_Return_Cb method_cb,
 Ecore_DBus_Error_Cb error_cb,
-void *data,
-char *signature, ...);
+const void *data,
+const char *signature, ...);
EAPI unsigned int ecore_dbus_message_new_method_return(Ecore_DBus_Server 
*svr,
-int reply_serial, char *destination,
-char *signature, ...);
+int reply_serial, const char 
*destination,
+const char *signature, ...);
EAPI unsigned int ecore_dbus_message_new_error(Ecore_DBus_Server *svr, 
-char *error_name,
-int reply_serial, char *destination,
-char *error_message);
+const char *error_name,
+int reply_serial, const char 
*destination,
+const char *error_message);
EAPI unsigned int ecore_dbus_message_new_signal(Ecore_DBus_Server *svr,
-char *path,
-char *interface, char *signal_name,
-char *destination, void *data,
-char *signature, ...);
+const char *path,
+const char *interface, const char 
*signal_name,
+const char *destination, const void 
*data,
+const char *signature, ...);
 
EAPI void  ecore_dbus_message_del(Ecore_DBus_Message *msg);
EAPI void  ecore_dbus_message_print(Ecore_DBus_Message *msg);
@@ -235,7 +235,7 @@
EAPI int ecore_dbus_method_release_name(Ecore_DBus_Server *svr, char *name, 
Ecore_DBus_Method_Return_Cb method_cb, Ecore_DBus_Error_Cb, void *data);
 
/* addresses */
-   EAPI Ecore_DBus_Address *ecore_dbus_address_new();
+   EAPI Ecore_DBus_Address *ecore_dbus_address_new(void);
EAPI voidecore_dbus_address_free(Ecore_DBus_Address 
*address);
 
EAPI Ecore_List *ecore_dbus_address_parse(const char *address);
===
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore_dbus/ecore_dbus.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- ecore_dbus.c27 Sep 2006 14:29:42 -  1.27
+++ ecore_dbus.c5 Nov 2006 17:45:03 -   1.28
@@ -210,7 +210,7 @@
 
 EAPI Ecore_DBus_Server *
 ecore_dbus_server_connect(Ecore_Con_Type con_type, const char *name, int port,
- const void *data)
+ const void *data __UNUSED__)
 {
/* XXX data isn't used! */
Ecore_DBus_Server  *svr;
@@ -253,7 +253,7 @@
 }
 
 EAPI int
-ecore_dbus_server_send(Ecore_DBus_Server *svr, char *command, int length)
+ecore_dbus_server_send(Ecore_DBus_Server *svr, const char *command, int length)
 {
int ret;
 
@@ -319,7 +319,7 @@
 /* auth functions */
 
 unsigned char *
-_ecore_dbus_auth_external(void *data)
+_ecore_dbus_auth_external(void *data __UNUSED__)
 {
char  *uid, *enc_uid, *msg;
 
@@ -335,7 +335,7 @@
 /* con functions */
 
 static int

E CVS: mail devilhorns

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mail

Dir : e_modules/mail


Modified Files:
e_mod_config_box.c 


Log Message:
Use e_widget_entry_password_set to make entry field use astericks.

===
RCS file: /cvs/e/e_modules/mail/e_mod_config_box.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- e_mod_config_box.c  20 Sep 2006 22:12:18 -  1.16
+++ e_mod_config_box.c  5 Nov 2006 21:34:38 -   1.17
@@ -232,6 +232,7 @@
   ob = e_widget_label_add (evas, D_(Password:));
   e_widget_frametable_object_append (of, ob, 0, 3, 1, 1, 0, 0, 1, 0);
   ob = e_widget_entry_add (evas, cfdata-pass);
+  e_widget_entry_password_set (ob, 1);
   e_widget_frametable_object_append (of, ob, 1, 3, 1, 1, 0, 0, 1, 0);
 
   cfdata-new_path_label = e_widget_label_add (evas, D_(New Mail Path:));



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl dj2

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
ewl_cursor.c ewl_cursor.h ewl_enums.h ewl_menu.h ewl_misc.h 
ewl_notebook.h ewl_popup.c ewl_popup.h 


Log Message:
- remove items from ewl_misc.h that shouldn't be there
- add ewl_cursor_new()
- fix doxy warnings
- fix code warnings
- formatting

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_cursor.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ewl_cursor.c4 Nov 2006 16:26:05 -   1.1
+++ ewl_cursor.c5 Nov 2006 22:08:22 -   1.2
@@ -7,6 +7,35 @@
 static void ewl_cursor_cb_render(Ewl_Widget *w, void *ev, void *data);
 static void ewl_cursor_cb_destroy(Ewl_Widget *w, void *ev, void *data);
 
+/**
+ * @return Returns a new Ewl_Cursor on success, or NULL on failure
+ * @brief Creates and initializes a new Ewl_Cursor widget
+ */
+Ewl_Widget *
+ewl_cursor_new(void)
+{
+   Ewl_Widget *w = NULL;
+
+   DENTER_FUNCTION(DLEVEL_STABLE);
+
+   w = NEW(Ewl_Cursor, 1);
+   if (!w)
+   DRETURN_PTR(NULL, DLEVEL_STABLE);
+
+   if (!ewl_cursor_init(EWL_CURSOR(w)))
+   {
+   ewl_widget_destroy(w);
+   w = NULL;
+   }
+
+   DRETURN_PTR(w, DLEVEL_STABLE);
+}
+
+/**
+ * @param cursor: The Ewl_Cursor to initialize
+ * @return Returns TRUE on success, FALSE on failure
+ * @brief Initializes an Ewl_Cursor widget
+ */
 int
 ewl_cursor_init(Ewl_Cursor *cursor)
 {
@@ -33,7 +62,7 @@
 }
 
 static void
-ewl_cursor_cb_render(Ewl_Widget *w, void *ev, void *data)
+ewl_cursor_cb_render(Ewl_Widget *w, void *ev __UNUSED__, void *data __UNUSED__)
 {
int handle;
int width, height;
@@ -76,7 +105,8 @@
 }
 
 static void
-ewl_cursor_cb_destroy(Ewl_Widget *w, void *ev, void *data)
+ewl_cursor_cb_destroy(Ewl_Widget *w, void *ev __UNUSED__, 
+   void *data __UNUSED__)
 {
Ewl_Cursor *cursor = EWL_CURSOR(w);
 
@@ -86,3 +116,4 @@
*/
cursor-handle = 0;
 }
+
===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_cursor.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ewl_cursor.h4 Nov 2006 16:26:05 -   1.1
+++ ewl_cursor.h5 Nov 2006 22:08:22 -   1.2
@@ -35,13 +35,13 @@
  */
 struct Ewl_Cursor
 {
-   Ewl_Window  window;   /** Inherit from Ewl_Window */
-   int refcount; /** Number of references to cursor */
-   int handle;   /** Engine id for generated cursor */
+   Ewl_Window window;   /** Inherit from Ewl_Window */
+   int refcount; /** Number of references to cursor */
+   int handle;   /** Engine id for generated cursor */
 };
 
 Ewl_Widget *ewl_cursor_new(void);
-int ewl_cursor_init(Ewl_Cursor * c);
+int ewl_cursor_init(Ewl_Cursor *c);
 
 /**
  * @}
===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_enums.h,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -3 -r1.63 -r1.64
--- ewl_enums.h 4 Nov 2006 16:58:05 -   1.63
+++ ewl_enums.h 5 Nov 2006 22:08:22 -   1.64
@@ -263,15 +263,15 @@
 typedef enum Ewl_Window_Flags Ewl_Window_Flags;
 
 /**
- * @enum Ewl_Popup_Types
+ * @enum Ewl_Popup_Type
  * The possible popup types
  */
 enum Ewl_Popup_Type
 {
-   EWL_POPUP_TYPE_NONE,
-   EWL_POPUP_TYPE_MOUSE,
-   EWL_POPUP_TYPE_MENU_HORIZONTAL,
-   EWL_POPUP_TYPE_MENU_VERTICAL
+   EWL_POPUP_TYPE_NONE,/** No popup type */
+   EWL_POPUP_TYPE_MOUSE,   /** Popup off the mouse */
+   EWL_POPUP_TYPE_MENU_HORIZONTAL, /** Popup with horizontal data */
+   EWL_POPUP_TYPE_MENU_VERTICAL/** Popup with vertical data */
 };
 
 /**
===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_menu.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- ewl_menu.h  4 Nov 2006 16:58:05 -   1.16
+++ ewl_menu.h  5 Nov 2006 22:08:22 -   1.17
@@ -48,7 +48,6 @@
 /*
  * Internally used callbacks, override at your own risk.
  */
-void ewl_menu_cb_realize(Ewl_Widget *w, void *ev_data, void *user_data);
 void ewl_menu_cb_configure(Ewl_Widget *w, void *ev_data, void *user_data);
 void ewl_menu_cb_expand(Ewl_Widget *w, void *ev_data, void *user_data);
 void ewl_menu_cb_hide(Ewl_Widget *w, void *ev_data, void *user_data);
===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_misc.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- ewl_misc.h  27 Oct 2006 04:26:56 -  1.17
+++ ewl_misc.h  5 Nov 2006 22:08:22 -   1.18
@@ -18,9 +18,6 

E CVS: taskbar troback

2006-11-05 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : troback
Project : e_modules
Module  : taskbar

Dir : e_modules/taskbar/po


Modified Files:
sv.po 


Log Message:
Minor update...




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs