aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorokan2013-01-02 02:02:08 +0000
committerokan2013-01-02 02:02:08 +0000
commitfde5e61cbc67cbd54d68da0a6c6df2c63634827f (patch)
treec5ddc43085a8bf5af047d2dba58064c5433b3e6f
parenteb90f692d0c3e8b8acbb22778e78954d39f6a687 (diff)
downloadcwm-fde5e61cbc67cbd54d68da0a6c6df2c63634827f.tar.gz
info->xine, for consistent variable names
-rw-r--r--client.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/client.c b/client.c
index 2a03885..d248e69 100644
--- a/client.c
+++ b/client.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: client.c,v 1.109 2013/01/01 14:26:29 okan Exp $
+ * $OpenBSD: client.c,v 1.110 2013/01/02 02:02:08 okan Exp $
*/
#include <sys/param.h>
@@ -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;