diff options
author | Christian Persch <chpe@gnome.org> | 2011-09-12 00:17:58 +0200 |
---|---|---|
committer | Christian Persch <chpe@gnome.org> | 2011-09-13 12:55:33 +0200 |
commit | 6902813a118d973e7b5d098233abaa66becabd7f (patch) | |
tree | 7e62b1e69da63796d87923caf116cf8fddfb106c /gtk/gtkfontchooser.h | |
parent | abd9242f3358aad1de4521bd6787643ac82b69db (diff) | |
download | gtk+-6902813a118d973e7b5d098233abaa66becabd7f.tar.gz |
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.
Diffstat (limited to 'gtk/gtkfontchooser.h')
-rw-r--r-- | gtk/gtkfontchooser.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkfontchooser.h b/gtk/gtkfontchooser.h index b47b65c1b6..5adb2372b8 100644 --- a/gtk/gtkfontchooser.h +++ b/gtk/gtkfontchooser.h @@ -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); |