diff options
author | jasper | 2007-05-28 18:34:27 +0000 |
---|---|---|
committer | jasper | 2007-05-28 18:34:27 +0000 |
commit | 4cf5a98fa42b6d99a178eda07a9e42f91e02c97d (patch) | |
tree | 2e025de77387e856ddb58f0b918477d8da17b3c6 /cursor.c | |
parent | 5116ffb4630d2bcf16cd2ab429dc6baba29e40bb (diff) | |
download | cwm-4cf5a98fa42b6d99a178eda07a9e42f91e02c97d.tar.gz |
convert globals from G_foo to Foo, as per TODO.
"looks good" pedro@, ok matthieu@
Diffstat (limited to '')
-rw-r--r-- | cursor.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -48,12 +48,12 @@ _mkcursor(struct cursor_data *c, struct screen_ctx *sc) { Pixmap f, m; - f = XCreatePixmapFromBitmapData(G_dpy, sc->rootwin, (char *)c->fore, + f = XCreatePixmapFromBitmapData(X_Dpy, sc->rootwin, (char *)c->fore, c->width, c->width, 1, 0, 1); - m = XCreatePixmapFromBitmapData(G_dpy, sc->rootwin, (char *)c->mask, + m = XCreatePixmapFromBitmapData(X_Dpy, sc->rootwin, (char *)c->mask, c->width, c->width, 1, 0, 1); - return (XCreatePixmapCursor(G_dpy, f, m, + return (XCreatePixmapCursor(X_Dpy, f, m, &sc->blackcolor, &sc->whitecolor, c->hot[0], c->hot[1])); } |