From ef03cb52872c19788e889b55ce9b30ff5a616677 Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Sun, 13 Feb 2000 08:16:48 +0000 Subject: s/refcount/ref_count/. Sun Feb 13 08:54:45 2000 Tim Janik * gdk/gdkcursor.h (struct _GdkCursor): s/refcount/ref_count/. * gdk/x11/gdkcursor-x11.c (gdk_cursor_new_from_pixmap): * gdk/x11/gdkcursor-x11.c (_gdk_cursor_destroy): * gdk/gdkcursor.c (gdk_cursor_ref): insert assertments for the parameters given and cursor->ref_count. coding style fixups. * gtk/gtksocket.c (gtk_socket_class_init): parent class is GtkContainer, not GtkWidget. * gtk/*.h: applied patch from Mathieu Lacage to fix up widget macros and add _GET_CLASS() variant. * gtk/*.c: some GtkType fixups. --- gtk/gtkvbbox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gtk/gtkvbbox.c') diff --git a/gtk/gtkvbbox.c b/gtk/gtkvbbox.c index 686f0e16e2..63a633828b 100644 --- a/gtk/gtkvbbox.c +++ b/gtk/gtkvbbox.c @@ -56,7 +56,7 @@ gtk_vbutton_box_get_type (void) (GtkClassInitFunc) NULL, }; - vbutton_box_type = gtk_type_unique (gtk_button_box_get_type (), &vbutton_box_info); + vbutton_box_type = gtk_type_unique (GTK_TYPE_BUTTON_BOX, &vbutton_box_info); } return vbutton_box_type; @@ -84,7 +84,7 @@ gtk_vbutton_box_new (void) { GtkVButtonBox *vbutton_box; - vbutton_box = gtk_type_new (gtk_vbutton_box_get_type ()); + vbutton_box = gtk_type_new (GTK_TYPE_VBUTTON_BOX); return GTK_WIDGET (vbutton_box); } -- cgit v1.2.1