From c22e6012d11e7316953c7a71222f11337d8c4868 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 27 Jul 2007 01:44:12 -0400 Subject: fix constness --- obt/prop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'obt/prop.c') diff --git a/obt/prop.c b/obt/prop.c index 0a9131ad..7beb9a91 100644 --- a/obt/prop.c +++ b/obt/prop.c @@ -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; -- cgit v1.2.3