Updated function argument name

This commit is contained in:
Jesse van den Kieboom 2005-10-11 09:42:29 +00:00
parent 11a6096bd9
commit fea7a2f2b0
1 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,7 @@ struct _GmColorTableClass {
GObjectClass parent_class;
/* Signals */
void (* color_changed) (GmColorTable *table, const gchar *url);
void (* color_changed) (GmColorTable *table, const gchar *color);
void (* bold_toggled) (GmColorTable *table, gboolean bold);
void (* font_changed) (GmColorTable *table, const gchar *font_description);
};
@ -54,6 +54,7 @@ void gm_color_table_set(GmColorTable *table, const gchar *name,
const gchar *hex);
gboolean gm_color_table_get(GmColorTable *table, const gchar *name,
GdkColor *color);
const gchar *gm_color_table_get_hex(GmColorTable *table, const gchar *name);
void gm_color_table_set_bold(GmColorTable *table, gboolean bold);
gboolean gm_color_table_bold(GmColorTable *table);
void gm_color_table_set_font_description(GmColorTable *table,