cosnt char*

This commit is contained in:
Dana Jansens 2007-05-31 04:07:01 +00:00
parent 467b7f4d4d
commit 5e50b406d0
2 changed files with 2 additions and 2 deletions

View file

@ -64,7 +64,7 @@ static gboolean find_appearance(ParseState *ps, xmlNodePtr n, const gchar *names
/* shortcut to the various find_* functions */
#define FIND(type, args...) find_##type(&ps, root, args)
RrTheme* RrThemeNew(const RrInstance *inst, gchar *name,
RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
RrFont *active_window_font, RrFont *inactive_window_font,
RrFont *menu_title_font, RrFont *menu_item_font,
RrFont *osd_font)

View file

@ -235,7 +235,7 @@ struct _RrTheme {
/*! The font values are all optional. If a NULL is used for any of them, then
the default font will be used. */
RrTheme* RrThemeNew(const RrInstance *inst, gchar *theme,
RrTheme* RrThemeNew(const RrInstance *inst, const gchar *theme,
RrFont *active_window_font, RrFont *inactive_window_font,
RrFont *menu_title_font, RrFont *menu_item_font,
RrFont *osd_font);