diff options
author | Matthias Clasen <mclasen@redhat.com> | 2013-07-26 16:29:12 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2013-07-26 16:29:12 -0400 |
commit | cda60c3c409730aa2f4ad2f5cdd0311fc97d0ee4 (patch) | |
tree | 1d724d463cea5d2ad9cc3084949005b72f087734 /gtk/gtkfontbutton.c | |
parent | 3358c544da2cd079f5f565b5fec885a1e750f1f2 (diff) | |
download | gtk+-cda60c3c409730aa2f4ad2f5cdd0311fc97d0ee4.tar.gz |
Another round of template binding api changes
We rename the gtk_widget_class_bind_template_child{_internal}
macros by appending a _private to their name. Otherwise, it
would be too magic to pass the 'public' names as arguments,
but affect a member of the Private struct. At the same time,
Add two new macros with the old names,
gtk_widget_class_bind_template_child{_internal} that operate
on members of the instance struct.
Diffstat (limited to 'gtk/gtkfontbutton.c')
-rw-r--r-- | gtk/gtkfontbutton.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkfontbutton.c b/gtk/gtkfontbutton.c index fc79480ee9..953cb0fe5e 100644 --- a/gtk/gtkfontbutton.c +++ b/gtk/gtkfontbutton.c @@ -545,9 +545,9 @@ gtk_font_button_class_init (GtkFontButtonClass *klass) /* Bind class to template */ gtk_widget_class_set_template_from_resource (widget_class, "/org/gtk/libgtk/gtkfontbutton.ui"); - gtk_widget_class_bind_template_child (widget_class, GtkFontButton, font_label); - gtk_widget_class_bind_template_child (widget_class, GtkFontButton, size_label); - gtk_widget_class_bind_template_child (widget_class, GtkFontButton, font_size_box); + gtk_widget_class_bind_template_child_private (widget_class, GtkFontButton, font_label); + gtk_widget_class_bind_template_child_private (widget_class, GtkFontButton, size_label); + gtk_widget_class_bind_template_child_private (widget_class, GtkFontButton, font_size_box); } static void |