Enlightenment CVS committal

Author  : tsauerbeck
Project : e17
Module  : libs/ecore

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


Modified Files:
        ecore_x_dnd.c 


Log Message:
changed ECORE_MIN /MAX to MIN/MAX
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_x/ecore_x_dnd.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- ecore_x_dnd.c       29 Feb 2004 08:15:47 -0000      1.5
+++ ecore_x_dnd.c       19 Mar 2004 18:40:09 -0000      1.6
@@ -170,8 +170,8 @@
 
    if (win)
    {
-      _xdnd->version = ECORE_MIN(ECORE_X_DND_VERSION, 
-                                 ecore_x_dnd_version_get(win));
+      _xdnd->version = MIN(ECORE_X_DND_VERSION, 
+                           ecore_x_dnd_version_get(win));
       if (win != _xdnd->dest)
       {
          int i;
@@ -186,7 +186,7 @@
             xev.xclient.data.l[1] &= 0xfffffffeUL;
          xev.xclient.data.l[1] |= ((unsigned long) _xdnd->version) << 24;
          
-         for (i = 0; i < ECORE_MIN(_xdnd->num_types, 3); ++i)
+         for (i = 0; i < MIN(_xdnd->num_types, 3); ++i)
             xev.xclient.data.l[i + 2] = _xdnd->types[i];
          XSendEvent(_ecore_x_disp, win, False, 0, &xev);
          _xdnd->await_status = 0;




-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to