summaryrefslogtreecommitdiff
path: root/gtk/gtksizegroup.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2001-09-24 16:54:41 +0000
committerOwen Taylor <otaylor@src.gnome.org>2001-09-24 16:54:41 +0000
commit540f15dcce27b7089a0dbcb76c746bd9aeda6c6e (patch)
treece173b5981f72f190b156c4d819d2e6b04a28a71 /gtk/gtksizegroup.c
parent1048e513e965b4e28e0221236845aea379bac1a3 (diff)
downloadgtk+-540f15dcce27b7089a0dbcb76c746bd9aeda6c6e.tar.gz
Add a compat macro that got lost.
Mon Sep 24 12:48:25 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtknotebook.h: Add a compat macro that got lost. * gtk/gtktreestore.c: Doc fixes. * gdk/x11/gdkevents-x11.c (gdk_event_translate): Fix reference leak for windows that receive events after being destroyed. (#60863, Joshua N. Pritikin) * gtk/gtktable.c (gtk_table_remove): Use gtk_widget_queue_resize rather than gtk_container_queue_resize(). * gtk/{gtkcontainer.c,gtkwidget.c,gtkwindow.c}: _gtk prefix gtk_container_queue_resize, gtk_container_queue_resize_widgets, gtk_container_child_composite_name. (#60217.)
Diffstat (limited to 'gtk/gtksizegroup.c')
-rw-r--r--gtk/gtksizegroup.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtksizegroup.c b/gtk/gtksizegroup.c
index ccd7100688..f834a4ba48 100644
--- a/gtk/gtksizegroup.c
+++ b/gtk/gtksizegroup.c
@@ -117,12 +117,12 @@ static void
real_queue_resize (GtkWidget *widget)
{
if (GTK_IS_RESIZE_CONTAINER (widget))
- gtk_container_clear_resize_widgets (GTK_CONTAINER (widget));
+ _gtk_container_clear_resize_widgets (GTK_CONTAINER (widget));
if (widget->parent)
- gtk_container_queue_resize (GTK_CONTAINER (widget->parent));
+ _gtk_container_queue_resize (GTK_CONTAINER (widget->parent));
else if (GTK_WIDGET_TOPLEVEL (widget) && GTK_IS_CONTAINER (widget))
- gtk_container_queue_resize (GTK_CONTAINER (widget));
+ _gtk_container_queue_resize (GTK_CONTAINER (widget));
}
static void