Rename gtk_font_chooser_get_{family,face,size}

... to gtk_font_chooser_get_font_{family,face,size}, in order to
avoid naming conflicts in bindings.
This commit is contained in:
Christian Persch
2011-09-12 00:17:58 +02:00
parent abd9242f33
commit 6902813a11
8 changed files with 25 additions and 25 deletions

View File

@ -78,9 +78,9 @@ struct _GtkFontChooserIface
GType gtk_font_chooser_get_type (void) G_GNUC_CONST;
PangoFontFamily *gtk_font_chooser_get_family (GtkFontChooser *fontchooser);
PangoFontFace *gtk_font_chooser_get_face (GtkFontChooser *fontchooser);
gint gtk_font_chooser_get_size (GtkFontChooser *fontchooser);
PangoFontFamily *gtk_font_chooser_get_font_family (GtkFontChooser *fontchooser);
PangoFontFace *gtk_font_chooser_get_font_face (GtkFontChooser *fontchooser);
gint gtk_font_chooser_get_font_size (GtkFontChooser *fontchooser);
PangoFontDescription *
gtk_font_chooser_get_font_desc (GtkFontChooser *fontchooser);