From 2d28b71a1b0253b4b0d58019b8c15bf4631e7914 Mon Sep 17 00:00:00 2001 From: okan Date: Wed, 2 Jan 2013 02:02:08 +0000 Subject: [PATCH] info->xine, for consistent variable names --- client.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/client.c b/client.c index cb477e1..a1c7ef6 100644 --- a/client.c +++ b/client.c @@ -682,17 +682,17 @@ client_placecalc(struct client_ctx *cc) if (cc->size->y > 0) cc->geom.y = MIN(cc->size->y, yslack); } else { - XineramaScreenInfo *info; + XineramaScreenInfo *xine; int xmouse, ymouse, xorig, yorig; int xmax, ymax; xu_ptr_getpos(sc->rootwin, &xmouse, &ymouse); - info = screen_find_xinerama(sc, xmouse, ymouse); - if (info) { - xorig = info->x_org; - yorig = info->y_org; - xmax = xorig + info->width; - ymax = yorig + info->height; + xine = screen_find_xinerama(sc, xmouse, ymouse); + if (xine) { + xorig = xine->x_org; + yorig = xine->y_org; + xmax = xorig + xine->width; + ymax = yorig + xine->height; } else { xorig = yorig = 0; xmax = sc->view.w;