]> Dogcows Code - chaz/openbox/blobdiff - obt/prop.c
fix constness
[chaz/openbox] / obt / prop.c
index 0a9131adcb747ca1c6400ac866d30b6b37d4c1cd..7beb9a91f6fb0981cc908ff5b7d8c432b1c3afc8 100644 (file)
@@ -414,7 +414,7 @@ void obt_prop_set_string_locale(Window win, Atom prop, const gchar *val)
     obt_prop_set_strings_locale(win, prop, s);
 }
 
-void obt_prop_set_strings_locale(Window win, Atom prop, gchar const **strs)
+void obt_prop_set_strings_locale(Window win, Atom prop, const gchar **strs)
 {
     gint i, count;
     gchar **lstrs;
@@ -444,7 +444,7 @@ void obt_prop_set_string_utf8(Window win, Atom prop, const gchar *val)
                     PropModeReplace, (const guchar*)val, strlen(val));
 }
 
-void obt_prop_set_strings_utf8(Window win, Atom prop, gchar const **strs)
+void obt_prop_set_strings_utf8(Window win, Atom prop, const gchar **strs)
 {
     GString *str;
     gchar const **s;
This page took 0.019969 seconds and 4 git commands to generate.