diff options
author | Tim Janik <timj@gtk.org> | 2000-02-13 08:16:48 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2000-02-13 08:16:48 +0000 |
commit | ef03cb52872c19788e889b55ce9b30ff5a616677 (patch) | |
tree | 6a08cd7e4de091d8308e3f90d04e3af5011f5801 /gtk/gtkplug.c | |
parent | 196d48435ebdfc03bb37b55306465dc16a847320 (diff) | |
download | gtk+-ef03cb52872c19788e889b55ce9b30ff5a616677.tar.gz |
s/refcount/ref_count/.
Sun Feb 13 08:54:45 2000 Tim Janik <timj@gtk.org>
* 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 <lacage@email.enst.fr> to
fix up widget macros and add _GET_CLASS() variant.
* gtk/*.c: some GtkType fixups.
Diffstat (limited to 'gtk/gtkplug.c')
-rw-r--r-- | gtk/gtkplug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkplug.c b/gtk/gtkplug.c index 78737d2155..ea68dd97aa 100644 --- a/gtk/gtkplug.c +++ b/gtk/gtkplug.c @@ -73,7 +73,7 @@ gtk_plug_get_type () (GtkArgGetFunc) NULL }; - plug_type = gtk_type_unique (gtk_window_get_type (), &plug_info); + plug_type = gtk_type_unique (GTK_TYPE_WINDOW, &plug_info); } return plug_type; @@ -88,7 +88,7 @@ gtk_plug_class_init (GtkPlugClass *class) widget_class = (GtkWidgetClass *)class; window_class = (GtkWindowClass *)class; - parent_class = gtk_type_class (gtk_window_get_type ()); + parent_class = gtk_type_class (GTK_TYPE_WINDOW); widget_class->realize = gtk_plug_realize; widget_class->unrealize = gtk_plug_unrealize; @@ -128,7 +128,7 @@ gtk_plug_new (guint32 socket_id) { GtkPlug *plug; - plug = GTK_PLUG (gtk_type_new (gtk_plug_get_type ())); + plug = GTK_PLUG (gtk_type_new (GTK_TYPE_PLUG)); gtk_plug_construct (plug, socket_id); return GTK_WIDGET (plug); } |