Ignore certain GtkSettings in defaultvalues unit test

Like the other GtkSettings already registered, these are influenced from
the outside and cannot be properly tested.  The defaultvalues test
passes again now.
This commit is contained in:
Kristian Rietveld 2009-09-30 13:05:33 +02:00
parent 28d56cbbda
commit dc04e012cf

View File

@ -239,7 +239,10 @@ test_type (gconstpointer data)
strcmp (pspec->name, "gtk-icon-theme-name") == 0 ||
strcmp (pspec->name, "gtk-im-module") == 0 ||
strcmp (pspec->name, "gtk-key-theme-name") == 0 ||
strcmp (pspec->name, "gtk-theme-name") == 0))
strcmp (pspec->name, "gtk-theme-name") == 0 ||
strcmp (pspec->name, "gtk-sound-theme-name") == 0 ||
strcmp (pspec->name, "gtk-enable-input-feedback-sounds") == 0 ||
strcmp (pspec->name, "gtk-enable-event-sounds") == 0))
continue;
if (g_type_is_a (type, GTK_TYPE_SPIN_BUTTON) &&