mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-16 07:04:29 +00:00
Fix build
Commit 023f406c96
has a typo that results
in this error:
../../../testsuite/gtk/notify.c: In function 'test_type':
../../../testsuite/gtk/notify.c:679:54: error: expected expression
before ')' token
(g_str_equal (pspec->name, "max-content-width") ||)
^
This commit is contained in:
parent
d9a6517d5f
commit
32885605c7
@ -676,8 +676,8 @@ test_type (gconstpointer data)
|
|||||||
|
|
||||||
/* these depend on the min-content- properties in a way that breaks our test */
|
/* these depend on the min-content- properties in a way that breaks our test */
|
||||||
if (g_type_is_a (type, GTK_TYPE_SCROLLED_WINDOW) &&
|
if (g_type_is_a (type, GTK_TYPE_SCROLLED_WINDOW) &&
|
||||||
(g_str_equal (pspec->name, "max-content-width") ||)
|
(g_str_equal (pspec->name, "max-content-width") ||
|
||||||
g_str_equal (pspec->name, "max-content-height"))
|
g_str_equal (pspec->name, "max-content-height")))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (g_test_verbose ())
|
if (g_test_verbose ())
|
||||||
|
Loading…
Reference in New Issue
Block a user