From 7d0331a679c00c20db87822739e7544c67c6c2fe Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Wed, 17 Jun 1998 08:48:22 +0000 Subject: new function gdk_window_at_pointer() to retrive the current GdkWindow the Wed Jun 17 03:47:40 1998 Tim Janik * gdk/gdk.h: * gdk/gdkwindow.c: new function gdk_window_at_pointer() to retrive the current GdkWindow the pointer is on if there is any. * gtk/gtktable.c (gtk_table_init): preallocate a table with one row and one column, so we don't construction logic at all. changed a few (x < y - 1) to (x + 1 < y), to avoid failing evaluations due to unsigned int wraps. * gtk/gtkwidget.c (gtk_widget_set_parent): removed left over code portion, added an additional check for parent != widget. * more GtkType and macro fixups. --- gtk/gtkvbox.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gtk/gtkvbox.c') diff --git a/gtk/gtkvbox.c b/gtk/gtkvbox.c index 4e9cc7921d..b819700af4 100644 --- a/gtk/gtkvbox.c +++ b/gtk/gtkvbox.c @@ -27,10 +27,10 @@ static void gtk_vbox_size_allocate (GtkWidget *widget, GtkAllocation *allocation); -guint +GtkType gtk_vbox_get_type (void) { - static guint vbox_type = 0; + static GtkType vbox_type = 0; if (!vbox_type) { @@ -45,7 +45,7 @@ gtk_vbox_get_type (void) (GtkArgGetFunc) NULL, }; - vbox_type = gtk_type_unique (gtk_box_get_type (), &vbox_info); + vbox_type = gtk_type_unique (GTK_TYPE_BOX, &vbox_info); } return vbox_type; -- cgit v1.2.1