diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-07-27 01:44:12 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2008-01-20 01:36:55 -0500 |
| commit | c22e6012d11e7316953c7a71222f11337d8c4868 (patch) | |
| tree | 8d0f3391dd6c706ed717d9321b7316c3b351b39e /obt/prop.c | |
| parent | 6653c9db22f47affbe5a189abcbde7786afe9413 (diff) | |
fix constness
Diffstat (limited to 'obt/prop.c')
| -rw-r--r-- | obt/prop.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |
