kwo pushed a commit to branch master. http://git.enlightenment.org/e16/e16.git/commit/?id=1dc44176d4eda842d55466a3ce251c6976b6910e
commit 1dc44176d4eda842d55466a3ce251c6976b6910e Author: Kim Woelders <k...@woelders.dk> Date: Thu Jun 6 22:26:28 2013 +0200 ipc.c: Trivial cleanups --- src/ipc.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/ipc.c b/src/ipc.c index 18020382..6f7bedca 100644 --- a/src/ipc.c +++ b/src/ipc.c @@ -27,7 +27,7 @@ #include "E.h" #include "aclass.h" -#include "borders.h" /* FIXME - Should not be here */ +#include "borders.h" #include "desktops.h" #include "emodule.h" #include "eobj.h" @@ -35,7 +35,7 @@ #include "ewin-ops.h" #include "focus.h" #include "grabs.h" -#include "hints.h" /* FIXME - Should not be here */ +#include "hints.h" #include "screen.h" #include "session.h" #include "settings.h" @@ -579,8 +579,7 @@ IpcWinop(const WinOp * wop, EWin * ewin, const char *prm) else if (!strcmp(param1, "??")) { IpcPrintf("client location: %d %d\n", - EoGetX(ewin) + ewin->border->border.left, - EoGetY(ewin) + ewin->border->border.top); + ewin->client.x, ewin->client.y); } else { --