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 /tests/testfontchooser.c | |
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 'tests/testfontchooser.c')
-rw-r--r-- | tests/testfontchooser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testfontchooser.c b/tests/testfontchooser.c index be81e1b713..c0146873a5 100644 --- a/tests/testfontchooser.c +++ b/tests/testfontchooser.c @@ -28,8 +28,8 @@ notify_font_cb (GtkFontChooser *fontchooser, GParamSpec *pspec, gpointer data) g_debug ("Changed font name %s", gtk_font_chooser_get_font (fontchooser)); - family = gtk_font_chooser_get_family (fontchooser); - face = gtk_font_chooser_get_face (fontchooser); + family = gtk_font_chooser_get_font_family (fontchooser); + face = gtk_font_chooser_get_font_face (fontchooser); if (family) { g_debug (" Family: %s is-monospace:%s", |