summaryrefslogtreecommitdiff
path: root/gtk/gtksearchbar.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2016-01-28 22:47:28 -0500
committerMatthias Clasen <mclasen@redhat.com>2016-01-28 22:47:28 -0500
commit3014aab25c640c7afe06cbc33689cb13efc4cb7d (patch)
tree7f92f253023c056f766de4ffb9c76ce35f5c4516 /gtk/gtksearchbar.c
parent0bf987c611a0878f913931296b6e189e15e5bd74 (diff)
downloadgtk+-3014aab25c640c7afe06cbc33689cb13efc4cb7d.tar.gz
searchbar: Don't expose implementation details
The various boxes and the revealer here should not be exposed as internal children for subclasses to use in their .ui files.
Diffstat (limited to 'gtk/gtksearchbar.c')
-rw-r--r--gtk/gtksearchbar.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtksearchbar.c b/gtk/gtksearchbar.c
index 5bb0b92c73..171ebe5aa7 100644
--- a/gtk/gtksearchbar.c
+++ b/gtk/gtksearchbar.c
@@ -421,10 +421,10 @@ gtk_search_bar_class_init (GtkSearchBarClass *klass)
g_object_class_install_properties (object_class, LAST_PROPERTY, widget_props);
gtk_widget_class_set_template_from_resource (widget_class, "/org/gtk/libgtk/ui/gtksearchbar.ui");
- gtk_widget_class_bind_template_child_internal_private (widget_class, GtkSearchBar, tool_box);
- gtk_widget_class_bind_template_child_internal_private (widget_class, GtkSearchBar, revealer);
- gtk_widget_class_bind_template_child_internal_private (widget_class, GtkSearchBar, box_center);
- gtk_widget_class_bind_template_child_internal_private (widget_class, GtkSearchBar, close_button);
+ gtk_widget_class_bind_template_child_private (widget_class, GtkSearchBar, tool_box);
+ gtk_widget_class_bind_template_child_private (widget_class, GtkSearchBar, revealer);
+ gtk_widget_class_bind_template_child_private (widget_class, GtkSearchBar, box_center);
+ gtk_widget_class_bind_template_child_private (widget_class, GtkSearchBar, close_button);
gtk_widget_class_set_css_name (widget_class, "searchbar");
}