]> Dogcows Code - chaz/openbox/commitdiff
g_locale_to_utf8 seems to work here and its a simpler function all, and i dont have...
authorDana Jansens <danakj@orodu.net>
Wed, 25 Apr 2007 01:31:55 +0000 (01:31 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 25 Apr 2007 01:31:55 +0000 (01:31 +0000)
openbox/prop.c

index d13a0515c8bf581c50e28cb36cb2d57dcfb54f22..efb46bd442346028def8eb873107190bdab731f3 100644 (file)
@@ -302,8 +302,7 @@ gboolean prop_get_string_locale(Window win, Atom prop, gchar **ret)
     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 @@ gboolean prop_get_strings_locale(Window win, Atom prop, gchar ***ret)
         (*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("");
This page took 0.022445 seconds and 4 git commands to generate.