diff options
| author | Dana Jansens <danakj@orodu.net> | 2010-05-17 19:04:06 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2010-05-17 19:31:57 -0400 |
| commit | 545061829795ad5c5f07f2b2607d42b3e695ed15 (patch) | |
| tree | 22ae703490c29dd983cda8135d73ce98e8b51411 /obt/prop.h | |
| parent | 4463bb6e2f038a90bf296d63ae555fc693be2778 (diff) | |
avoid new gcc warning (casting ** to const** is not valid for good reason)
Diffstat (limited to 'obt/prop.h')
| -rw-r--r-- | obt/prop.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -236,8 +236,10 @@ void obt_prop_set_array32(Window win, Atom prop, Atom type, gulong *val, guint num); void obt_prop_set_string_locale(Window win, Atom prop, const gchar *val); void obt_prop_set_string_utf8(Window win, Atom prop, const gchar *val); -void obt_prop_set_strings_locale(Window win, Atom prop, const gchar **strs); -void obt_prop_set_strings_utf8(Window win, Atom prop, const gchar **strs); +void obt_prop_set_strings_locale(Window win, Atom prop, + const gchar *const *strs); +void obt_prop_set_strings_utf8(Window win, Atom prop, + const gchar *const *strs); void obt_prop_erase(Window win, Atom prop); |
