Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir     : e16/e/src


Modified Files:
        coords.c ipc.c progress.c tooltips.c 


Log Message:
Wrap.

===================================================================
RCS file: /cvs/e/e16/e/src/coords.c,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -3 -r1.43 -r1.44
--- coords.c    16 Apr 2006 22:27:06 -0000      1.43
+++ coords.c    12 Aug 2006 15:40:57 -0000      1.44
@@ -71,8 +71,8 @@
 
    /* Width hysteresis (hack - assuming horizontal text) */
    cw += 8;
-   if (eo && abs(eo->w - cw) < 8)
-      cw = eo->w;
+   if (eo && abs(EobjGetW(eo) - cw) < 8)
+      cw = EobjGetW(eo);
 
    if (Mode.mode == MODE_MOVE)
       md = Conf.movres.mode_move;
===================================================================
RCS file: /cvs/e/e16/e/src/ipc.c,v
retrieving revision 1.272
retrieving revision 1.273
diff -u -3 -r1.272 -r1.273
--- ipc.c       7 Aug 2006 20:20:15 -0000       1.272
+++ ipc.c       12 Aug 2006 15:40:57 -0000      1.273
@@ -1225,9 +1225,9 @@
        eo = lst[i];
        IpcPrintf
           (" %2d %#9lx %2d %d %d %2d  %3d %d  %d %3d %5d,%5d %4dx%4d %d %d 
%s\n",
-           i, WinGetXwin(eo->win), WinGetDepth(eo->win), eo->type, eo->shown,
+           i, EobjGetXwin(eo), WinGetDepth(eo->win), eo->type, eo->shown,
            eo->shaped, eo->desk->num, eo->sticky, eo->floating, eo->ilayer,
-           eo->x, eo->y, eo->w, eo->h,
+           EobjGetX(eo), EobjGetY(eo), EobjGetW(eo), EobjGetH(eo),
 #if USE_COMPOSITE
            (eo->cmhook) ? 1 : 0, !eo->noredir
 #else
===================================================================
RCS file: /cvs/e/e16/e/src/progress.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -3 -r1.34 -r1.35
--- progress.c  8 May 2006 16:26:22 -0000       1.34
+++ progress.c  12 Aug 2006 15:40:57 -0000      1.35
@@ -117,9 +117,9 @@
 
             pp = plist[j + 1];
             plist[j] = pp;
-            EobjMove(pp->win, pp->win->x, pp->win->y - dy);
-            EobjMove(pp->n_win, pp->n_win->x, pp->n_win->y - dy);
-            EobjMove(pp->p_win, pp->p_win->x, pp->p_win->y - dy);
+            EobjMove(pp->win, EobjGetX(pp->win), EobjGetY(pp->win) - dy);
+            EobjMove(pp->n_win, EobjGetX(pp->n_win), EobjGetY(pp->n_win) - dy);
+            EobjMove(pp->p_win, EobjGetX(pp->p_win), EobjGetY(pp->p_win) - dy);
          }
        break;
      }
===================================================================
RCS file: /cvs/e/e16/e/src/tooltips.c,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -3 -r1.107 -r1.108
--- tooltips.c  8 Aug 2006 03:58:42 -0000       1.107
+++ tooltips.c  12 Aug 2006 15:40:57 -0000      1.108
@@ -579,8 +579,8 @@
      {
        eo = tt->win[i];
        if (eo)
-          ImageclassApply(tt->iclass[i], eo->win, eo->w, eo->h, 0, 0,
-                          STATE_NORMAL, ST_TOOLTIP);
+          ImageclassApply(tt->iclass[i], eo->win, EobjGetW(eo), EobjGetH(eo),
+                          0, 0, STATE_NORMAL, ST_TOOLTIP);
      }
 
    for (i = 0; i < 5; i++)



-------------------------------------------------------------------------
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=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to