summaryrefslogtreecommitdiff
path: root/gtk/gtklayout.h
diff options
context:
space:
mode:
authorTim Janik <timj@gtk.org>2000-02-13 08:16:48 +0000
committerTim Janik <timj@src.gnome.org>2000-02-13 08:16:48 +0000
commitef03cb52872c19788e889b55ce9b30ff5a616677 (patch)
tree6a08cd7e4de091d8308e3f90d04e3af5011f5801 /gtk/gtklayout.h
parent196d48435ebdfc03bb37b55306465dc16a847320 (diff)
downloadgdk-pixbuf-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/gtklayout.h')
-rw-r--r--gtk/gtklayout.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtklayout.h b/gtk/gtklayout.h
index 432c2d98e..0cf7a12e4 100644
--- a/gtk/gtklayout.h
+++ b/gtk/gtklayout.h
@@ -39,11 +39,14 @@
extern "C" {
#endif /* __cplusplus */
+
#define GTK_TYPE_LAYOUT (gtk_layout_get_type ())
#define GTK_LAYOUT(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_LAYOUT, GtkLayout))
#define GTK_LAYOUT_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_LAYOUT, GtkLayoutClass))
#define GTK_IS_LAYOUT(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_LAYOUT))
#define GTK_IS_LAYOUT_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LAYOUT))
+#define GTK_LAYOUT_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_LAYOUT, GtkLayoutClass))
+
typedef struct _GtkLayout GtkLayout;
typedef struct _GtkLayoutClass GtkLayoutClass;