From 60a409785facbef5ba61c0bb1e396ec027e02bbc Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Tue, 19 Jun 2007 12:23:36 +0000 Subject: Rename buildable methods to not clash with widget methods. (#448928, 2007-06-19 Johan Dahlin * gtk/*: Rename buildable methods to not clash with widget methods. (#448928, Torsten Schoenfeld) svn path=/trunk/; revision=18187 --- gtk/gtknotebook.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gtk/gtknotebook.c') diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index 4297456f1f..48011b564a 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -425,7 +425,7 @@ static void do_detach_tab (GtkNotebook *from, /* GtkBuildable */ static void gtk_notebook_buildable_init (GtkBuildableIface *iface); -static void gtk_notebook_buildable_add (GtkBuildable *buildable, +static void gtk_notebook_buildable_add_child (GtkBuildable *buildable, GtkBuilder *builder, GObject *child, const gchar *type); @@ -1108,14 +1108,14 @@ gtk_notebook_init (GtkNotebook *notebook) static void gtk_notebook_buildable_init (GtkBuildableIface *iface) { - iface->add = gtk_notebook_buildable_add; + iface->add_child = gtk_notebook_buildable_add_child; } static void -gtk_notebook_buildable_add (GtkBuildable *buildable, - GtkBuilder *builder, - GObject *child, - const gchar *type) +gtk_notebook_buildable_add_child (GtkBuildable *buildable, + GtkBuilder *builder, + GObject *child, + const gchar *type) { GtkNotebook *notebook = GTK_NOTEBOOK (buildable); -- cgit v1.2.1