Consider GTK_DISABLE_DEPRECATED in gtk3-compat.h

This commit is contained in:
Christian Dywan 2012-02-25 23:55:42 +01:00
parent 81526df6d6
commit d3a60802ac
2 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@
G_BEGIN_DECLS
#if GTK_CHECK_VERSION (3, 2, 0)
#if GTK_CHECK_VERSION (3, 2, 0) && defined (GTK_DISABLE_DEPRECATED)
#define GTK_TYPE_VBOX GTK_TYPE_BOX
#define GtkVBox GtkBox
#define GtkVBoxClass GtkBoxClass

View file

@ -154,13 +154,13 @@ properties_object_get_set (GObject* object)
static void
properties_object_test (gconstpointer object)
{
if (GTK_IS_OBJECT (object))
if (GTK_IS_WIDGET (object))
g_object_ref_sink ((GObject*)object);
properties_object_get_set ((GObject*)object);
if (GTK_IS_OBJECT (object))
gtk_object_destroy (GTK_OBJECT (object));
if (GTK_IS_WIDGET (object))
gtk_widget_destroy (GTK_WIDGET (object));
g_object_unref ((GObject*)object);
}