From f00a1f9aaee65fb11d5569e8fb559321ce6a7ec2 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 22 Jun 2014 12:09:52 -0400 Subject: [PATCH] notify test: Skip GtkWidget::double-buffered This property is now deprecated, and ignored, thus: no notification. --- testsuite/gtk/notify.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testsuite/gtk/notify.c b/testsuite/gtk/notify.c index 3d6ce1865b..e86ca65f4b 100644 --- a/testsuite/gtk/notify.c +++ b/testsuite/gtk/notify.c @@ -545,6 +545,10 @@ test_type (gconstpointer data) g_str_equal (pspec->name, "tearoff-state")) continue; + if (g_type_is_a (pspec->owner_type, GTK_TYPE_WIDGET) && + g_str_equal (pspec->name, "double-buffered")) + continue; + /* Can only be set on window widgets */ if (pspec->owner_type == GTK_TYPE_WIDGET && g_str_equal (pspec->name, "events"))