]> Dogcows Code - chaz/openbox/blobdiff - openbox/screen.c
fix constness
[chaz/openbox] / openbox / screen.c
index d8c22fd41e47c1b8964ca6e4004c3408c1c6bba5..ef98446b7163d713407c95a0dd5d3ad30c5f7035 100644 (file)
@@ -385,7 +385,7 @@ void screen_startup(gboolean reconfig)
 
         /* set the root window property */
         OBT_PROP_SETSS(RootWindow(obt_display, ob_screen),
-                       NET_DESKTOP_NAMES, utf8, names);
+                       NET_DESKTOP_NAMES, utf8, (const gchar**)names);
 
         g_strfreev(names);
     }
@@ -1162,7 +1162,7 @@ void screen_update_desktop_names(void)
         /* if we changed any names, then set the root property so we can
            all agree on the names */
         OBT_PROP_SETSS(RootWindow(obt_display, ob_screen), NET_DESKTOP_NAMES,
-                       utf8, screen_desktop_names);
+                       utf8, (const gchar**)screen_desktop_names);
     }
 
     /* resize the pager for these names */
This page took 0.020155 seconds and 4 git commands to generate.