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:
parent
204c1c0418
commit
bf8ec9cf36
3 changed files with 7 additions and 2 deletions
|
@ -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>
|
2007-02-22 Jens Granseuer <jensgr@gmx.net>
|
||||||
|
|
||||||
* gnome-theme-details.c: (color_select): update selected_fg_color
|
* gnome-theme-details.c: (color_select): update selected_fg_color
|
||||||
|
|
|
@ -14,7 +14,7 @@ str_nequal (gchar *a, gchar *b)
|
||||||
}
|
}
|
||||||
|
|
||||||
gchar *
|
gchar *
|
||||||
gtkrc_find_named (gchar *name)
|
gtkrc_find_named (const gchar *name)
|
||||||
{
|
{
|
||||||
/* find the gtkrc of the named theme
|
/* find the gtkrc of the named theme
|
||||||
* taken from gtkrc.c (gtk_rc_parse_named)
|
* taken from gtkrc.c (gtk_rc_parse_named)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
|
|
||||||
void gtkrc_get_details (gchar *filename, GSList **engines, GSList **symbolic_colors);
|
void gtkrc_get_details (gchar *filename, GSList **engines, GSList **symbolic_colors);
|
||||||
gchar * gtkrc_find_named (gchar *name);
|
gchar * gtkrc_find_named (const gchar *name);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue