diff options
author | Benjamin Otte <otte@redhat.com> | 2020-01-21 02:59:26 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2020-01-21 12:47:16 +0100 |
commit | 563ad2db1bba0ceffaaa49096939ec21e548a86c (patch) | |
tree | 2c5627703ea5b0419d0672cc46b061e0d0d94b1d /gtk/gtkcontainer.h | |
parent | c85d9a3259ad225ffe2ece1bb77987d86e9161a9 (diff) | |
download | gtk+-563ad2db1bba0ceffaaa49096939ec21e548a86c.tar.gz |
containter: Remove gtk_container_get_path_for_child()
Diffstat (limited to 'gtk/gtkcontainer.h')
-rw-r--r-- | gtk/gtkcontainer.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gtk/gtkcontainer.h b/gtk/gtkcontainer.h index e3dd79a0ac..332846df7f 100644 --- a/gtk/gtkcontainer.h +++ b/gtk/gtkcontainer.h @@ -62,8 +62,6 @@ struct _GtkContainer * @child_type: Returns the type of the children supported by the container. * @set_child_property: Set a property on a child of container. * @get_child_property: Get a property from a child of container. - * @get_path_for_child: Get path representing entire widget hierarchy - * from the toplevel down to and including @child. * * Base class for containers. */ @@ -83,8 +81,6 @@ struct _GtkContainerClass void (*set_focus_child) (GtkContainer *container, GtkWidget *child); GType (*child_type) (GtkContainer *container); - GtkWidgetPath * (*get_path_for_child) (GtkContainer *container, - GtkWidget *child); /*< private >*/ @@ -132,10 +128,6 @@ void gtk_container_forall (GtkContainer *container, GtkCallback callback, gpointer callback_data); -GDK_AVAILABLE_IN_ALL -GtkWidgetPath * gtk_container_get_path_for_child (GtkContainer *container, - GtkWidget *child); - G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkContainer, g_object_unref) G_END_DECLS |