notify test: Remove more nonexistent properties

This commit is contained in:
Daniel Boles 2018-06-27 17:17:05 +01:00
parent ecaa16c367
commit 8aa4b5150e

View File

@ -505,10 +505,6 @@ test_type (gconstpointer data)
g_str_equal (pspec->name, "page"))
continue;
if (g_type_is_a (pspec->owner_type, GTK_TYPE_TOGGLE_BUTTON) &&
g_str_equal (pspec->name, "draw-indicator"))
continue;
/* Too many special cases involving -set properties */
if (g_str_equal (g_type_name (pspec->owner_type), "GtkCellRendererText") ||
g_str_equal (g_type_name (pspec->owner_type), "GtkTextTag"))
@ -518,19 +514,6 @@ test_type (gconstpointer data)
if (g_str_equal (g_type_name (pspec->owner_type), "GtkComboBox"))
continue;
if (g_type_is_a (pspec->owner_type, GTK_TYPE_COLOR_BUTTON) &&
g_str_equal (pspec->name, "alpha"))
continue;
if (g_type_is_a (pspec->owner_type, GTK_TYPE_CELL_RENDERER_PIXBUF) &&
(g_str_equal (pspec->name, "stock-id") ||
g_str_equal (pspec->name, "stock-size")))
continue;
if (g_type_is_a (pspec->owner_type, GTK_TYPE_MENU) &&
g_str_equal (pspec->name, "tearoff-state"))
continue;
/* Can only be set on unmapped windows */
if (pspec->owner_type == GTK_TYPE_WINDOW &&
g_str_equal (pspec->name, "type-hint"))
@ -607,10 +590,6 @@ test_type (gconstpointer data)
g_str_equal (pspec->name, "font"))
continue;
if (g_type_is_a (type, GTK_TYPE_FONT_BUTTON) &&
g_str_equal (pspec->name, "font-name"))
continue;
/* these depend on the min-content- properties in a way that breaks our test */
if (g_type_is_a (type, GTK_TYPE_SCROLLED_WINDOW) &&
(g_str_equal (pspec->name, "max-content-width") ||