diff options
Diffstat (limited to 'mousefunc.c')
-rw-r--r-- | mousefunc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mousefunc.c b/mousefunc.c index fdb55fa..479454d 100644 --- a/mousefunc.c +++ b/mousefunc.c @@ -44,7 +44,7 @@ mousefunc_sweep_calc(struct client_ctx *cc, int x, int y, int mx, int my) static void mousefunc_sweep_draw(struct client_ctx *cc) { - struct screen_ctx *sc = CCTOSC(cc); + struct screen_ctx *sc = cc->sc; char asize[10]; /* fits "nnnnxnnnn\0" */ int width, height, width_size, width_name; @@ -72,7 +72,7 @@ mousefunc_window_resize(struct client_ctx *cc, void *arg) { XEvent ev; Time time = 0; - struct screen_ctx *sc = CCTOSC(cc); + struct screen_ctx *sc = cc->sc; int x = cc->geom.x, y = cc->geom.y; client_raise(cc); |