Reformat g_themed_icon_get_names return type to make gtk-doc work

Seems the gtk-doc scanner needs "const gchar* const *" to work, so switching
to that.
This commit is contained in:
Alexander Larsson 2009-06-01 22:09:21 +02:00
parent ce6fbd6231
commit 0bb5739f32

View File

@ -56,7 +56,7 @@ void g_themed_icon_prepend_name (GThemedIcon *icon,
void g_themed_icon_append_name (GThemedIcon *icon,
const char *iconname);
const char * const *g_themed_icon_get_names (GThemedIcon *icon);
const gchar* const * g_themed_icon_get_names (GThemedIcon *icon);
G_END_DECLS