constify arg to fix a compiler warning

2007-02-22  Jens Granseuer  <jensgr@gmx.net>

	* gtkrc-utils.c: (gtkrc_find_named):
	* gtkrc-utils.h: constify arg to fix a compiler warning

svn path=/trunk/; revision=7320
This commit is contained in:
Jens Granseuer 2007-02-22 19:17:18 +00:00 committed by Jens Granseuer
parent 204c1c0418
commit bf8ec9cf36
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2007-02-22 Jens Granseuer <jensgr@gmx.net>
* gtkrc-utils.c: (gtkrc_find_named):
* gtkrc-utils.h: constify arg to fix a compiler warning
2007-02-22 Jens Granseuer <jensgr@gmx.net>
* gnome-theme-details.c: (color_select): update selected_fg_color

View file

@ -14,7 +14,7 @@ str_nequal (gchar *a, gchar *b)
}
gchar *
gtkrc_find_named (gchar *name)
gtkrc_find_named (const gchar *name)
{
/* find the gtkrc of the named theme
* taken from gtkrc.c (gtk_rc_parse_named)

View file

@ -1,5 +1,5 @@
void gtkrc_get_details (gchar *filename, GSList **engines, GSList **symbolic_colors);
gchar * gtkrc_find_named (gchar *name);
gchar * gtkrc_find_named (const gchar *name);