diff options
author | Tim Janik <timj@src.gnome.org> | 1998-05-10 05:19:00 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-05-10 05:19:00 +0000 |
commit | 315affdfcb4a5bc491232f92a38581d49fedfbab (patch) | |
tree | aa5ce8346cafc8dd8e6933113013c207e47b11ac /gtk/gtkobject.h | |
parent | f75d8b0c23e8ea8cd31afd8ac16aa85324aa4ff5 (diff) | |
download | gdk-pixbuf-315affdfcb4a5bc491232f92a38581d49fedfbab.tar.gz |
minor cleanups and merges
Diffstat (limited to 'gtk/gtkobject.h')
-rw-r--r-- | gtk/gtkobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkobject.h b/gtk/gtkobject.h index 8c95f264d..323b69fca 100644 --- a/gtk/gtkobject.h +++ b/gtk/gtkobject.h @@ -55,10 +55,10 @@ extern "C" { /* Determines whether `obj' and `klass' are a type of `otype'. */ #define GTK_CHECK_TYPE(obj,otype) ( \ - GTK_TYPE_IS_A (((GtkObject*) (obj))->klass->type, (otype)) \ + gtk_type_is_a (((GtkObject*) (obj))->klass->type, (otype)) \ ) #define GTK_CHECK_CLASS_TYPE(klass,otype) ( \ - GTK_TYPE_IS_A (((GtkObjectClass*) (klass))->type, (otype)) \ + gtk_type_is_a (((GtkObjectClass*) (klass))->type, (otype)) \ ) /* Macro for casting a pointer to a GtkObject or GtkObjectClass pointer. |