all repos — openbox @ d91c67bf93fd8ca024c32d38b00377a6fef606c9

openbox fork - make it a bit more like ryudo

g_locale_to_utf8 seems to work here and its a simpler function all, and i dont have to specify iso-8891whatever in it, so maybe its actually more portable. or maybe it breaks things. we'll see, won't we.
Dana Jansens danakj@orodu.net
commit

d91c67bf93fd8ca024c32d38b00377a6fef606c9

parent

f6b049cd38715b279e03a6c68686454ac705420a

1 files changed, 2 insertions(+), 4 deletions(-)

jump to
M openbox/prop.copenbox/prop.c

@@ -302,8 +302,7 @@ gint nstr;

gchar *s; if (get_stringlist(win, prop, &list, &nstr) && nstr) { - s = g_convert(list[0], strlen(list[0]), "UTF-8", "ISO-8859-1", - NULL, NULL, NULL); + s = g_locale_to_utf8(list[0], -1, NULL, NULL, NULL); XFreeStringList(list); if (s) { *ret = s;

@@ -332,8 +331,7 @@ *ret = g_new0(gchar*, count + 1);

(*ret)[count] = NULL; /* null terminated list */ for (i = 0, it = strs; it; ++i, it = g_slist_next(it)) { - (*ret)[i] = g_convert(it->data, -1, "UTF-8", "ISO-8859-1", - NULL, NULL, NULL); + (*ret)[i] = g_locale_to_utf8(it->data, -1, NULL, NULL, NULL); /* make sure translation did not fail */ if (!(*ret)[i]) (*ret)[i] = g_strdup("");