diff options
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 8c95f264da..323b69fcab 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. |