summaryrefslogtreecommitdiff
path: root/gtk/gtkcontainer.c
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2011-01-13 16:30:28 -0500
committerMatthias Clasen <mclasen@redhat.com>2011-01-14 09:29:33 -0500
commit890e4511aaf3ef0ef72328fd7b89440e49de94d2 (patch)
tree84a0b1b546b3f057df29bd0894086c13f04e4fac /gtk/gtkcontainer.c
parent92c8a3e0e174ef774abe8095436538b36d6b669e (diff)
downloadgtk+-890e4511aaf3ef0ef72328fd7b89440e49de94d2.tar.gz
GtkContainer: make "handle_border_width" member private
Otherwise in introspection we get a naming conflict between the structure member and the method. http://bugzilla.gnome.org/show_bug.cgi?id=639325
Diffstat (limited to 'gtk/gtkcontainer.c')
-rw-r--r--gtk/gtkcontainer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c
index d5135209cd..cd400b3e02 100644
--- a/gtk/gtkcontainer.c
+++ b/gtk/gtkcontainer.c
@@ -1766,7 +1766,7 @@ gtk_container_adjust_size_request (GtkWidget *widget,
container = GTK_CONTAINER (widget);
- if (GTK_CONTAINER_GET_CLASS (widget)->handle_border_width)
+ if (GTK_CONTAINER_GET_CLASS (widget)->_handle_border_width)
{
int border_width;
@@ -1796,7 +1796,7 @@ gtk_container_adjust_size_allocation (GtkWidget *widget,
container = GTK_CONTAINER (widget);
- if (!GTK_CONTAINER_GET_CLASS (widget)->handle_border_width)
+ if (!GTK_CONTAINER_GET_CLASS (widget)->_handle_border_width)
{
parent_class->adjust_size_allocation (widget, orientation,
minimum_size, natural_size, allocated_pos,
@@ -1859,7 +1859,7 @@ gtk_container_class_handle_border_width (GtkContainerClass *klass)
{
g_return_if_fail (GTK_IS_CONTAINER_CLASS (klass));
- klass->handle_border_width = TRUE;
+ klass->_handle_border_width = TRUE;
}
/**