diff options
author | okan <okan> | 2013-10-07 13:40:26 +0000 |
---|---|---|
committer | okan <okan> | 2013-10-07 13:40:26 +0000 |
commit | f3477539bbaec1e15342c4aeba9e0f7ccbfa7fe3 (patch) | |
tree | c25ba5ba8b4178270ba4e50a727eff96e4052398 | |
parent | 0dec9e849d3ed5dc19882ca4184d01cff5843779 (diff) | |
parent | bfd3f5e5e1728cacf0046e7d8e724e10b7380e7b (diff) | |
download | cwm-f3477539bbaec1e15342c4aeba9e0f7ccbfa7fe3.tar.gz cwm-f3477539bbaec1e15342c4aeba9e0f7ccbfa7fe3.tar.xz cwm-f3477539bbaec1e15342c4aeba9e0f7ccbfa7fe3.zip |
cvsimport
-rw-r--r-- | calmwm.h | 2 | ||||
-rw-r--r-- | client.c | 2 | ||||
-rw-r--r-- | conf.c | 9 | ||||
-rw-r--r-- | group.c | 2 | ||||
-rw-r--r-- | xutil.c | 6 |
5 files changed, 12 insertions, 9 deletions
diff --git a/calmwm.h b/calmwm.h index d02b915..5430cd4 100644 --- a/calmwm.h +++ b/calmwm.h @@ -524,7 +524,7 @@ void xev_loop(void); void xu_btn_grab(Window, int, u_int); void xu_btn_ungrab(Window, int, u_int); -int xu_getprop(Window, Atom, Atom, long, u_char **); +int xu_getprop(Window, Atom, Atom, long, unsigned char **); int xu_get_wm_state(Window, int *); int xu_getstrprop(Window, Atom, char **); void xu_key_grab(Window, u_int, KeySym); diff --git a/client.c b/client.c index b657304..f293147 100644 --- a/client.c +++ b/client.c @@ -841,7 +841,7 @@ client_getmwmhints(struct client_ctx *cc) struct mwm_hints *mwmh; if (xu_getprop(cc->win, cwmh[_MOTIF_WM_HINTS], cwmh[_MOTIF_WM_HINTS], - PROP_MWM_HINTS_ELEMENTS, (u_char **)&mwmh) == MWM_NUMHINTS) + PROP_MWM_HINTS_ELEMENTS, (unsigned char **)&mwmh) == MWM_NUMHINTS) if (mwmh->flags & MWM_HINTS_DECORATIONS && !(mwmh->decorations & MWM_DECOR_ALL) && !(mwmh->decorations & MWM_DECOR_BORDER)) diff --git a/conf.c b/conf.c index 41e5a9f..e2f49b4 100644 --- a/conf.c +++ b/conf.c @@ -104,9 +104,12 @@ conf_screen(struct screen_ctx *sc) sc->gap = Conf.gap; - sc->xftfont = XftFontOpenName(X_Dpy, sc->which, Conf.font); - if (sc->xftfont == NULL) - errx(1, "XftFontOpenName"); + sc->xftfont = XftFontOpenXlfd(X_Dpy, sc->which, Conf.font); + if (sc->xftfont == NULL) { + sc->xftfont = XftFontOpenName(X_Dpy, sc->which, Conf.font); + if (sc->xftfont == NULL) + errx(1, "XftFontOpenName"); + } for (i = 0; i < nitems(color_binds); i++) { if (i == CWM_COLOR_MENU_FONT_SEL && *Conf.color[i] == '\0') { diff --git a/group.c b/group.c index 40faaf2..d59704d 100644 --- a/group.c +++ b/group.c @@ -419,7 +419,7 @@ group_update_names(struct screen_ctx *sc) int i = 0, j = 0, nstrings = 0, n = 0, setnames = 0; if ((j = xu_getprop(sc->rootwin, ewmh[_NET_DESKTOP_NAMES], - cwmh[UTF8_STRING], 0xffffff, (u_char **)&prop_ret)) > 0) { + cwmh[UTF8_STRING], 0xffffff, (unsigned char **)&prop_ret)) > 0) { prop_ret[j - 1] = '\0'; /* paranoia */ while (i < j) { if (prop_ret[i++] == '\0') diff --git a/xutil.c b/xutil.c index 10a04b6..45c19e9 100644 --- a/xutil.c +++ b/xutil.c @@ -106,7 +106,7 @@ xu_key_grab(Window win, u_int mask, KeySym keysym) } int -xu_getprop(Window win, Atom atm, Atom type, long len, u_char **p) +xu_getprop(Window win, Atom atm, Atom type, long len, unsigned char **p) { Atom realtype; u_long n, extra; @@ -160,7 +160,7 @@ xu_get_wm_state(Window win, int *state) long *p = NULL; if (xu_getprop(win, cwmh[WM_STATE], cwmh[WM_STATE], 2L, - (u_char **)&p) <= 0) + (unsigned char **)&p) <= 0) return (-1); *state = (int)*p; @@ -331,7 +331,7 @@ xu_ewmh_get_net_wm_state(struct client_ctx *cc, int *n) Atom *state, *p = NULL; if ((*n = xu_getprop(cc->win, ewmh[_NET_WM_STATE], XA_ATOM, 64L, - (u_char **)&p)) <= 0) + (unsigned char **)&p)) <= 0) return (NULL); state = xcalloc(*n, sizeof(Atom)); |