mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-05-02 03:56:53 +02:00
GObject: fixup reversed logic in last commit
Accidentally dropped a !.
This commit is contained in:
parent
3af050f6fc
commit
958f2bac7a
@ -1380,7 +1380,7 @@ object_interface_check_properties (gpointer func_data,
|
|||||||
* the READABLE and WRITABLE flags. We also simplify here
|
* the READABLE and WRITABLE flags. We also simplify here
|
||||||
* by only checking the value type, not the G_PARAM_SPEC_TYPE.
|
* by only checking the value type, not the G_PARAM_SPEC_TYPE.
|
||||||
*/
|
*/
|
||||||
if (g_type_is_a (pspecs[n]->value_type, class_pspec->value_type))
|
if (!g_type_is_a (pspecs[n]->value_type, class_pspec->value_type))
|
||||||
g_critical ("Property '%s' on class '%s' has type '%s' "
|
g_critical ("Property '%s' on class '%s' has type '%s' "
|
||||||
"which is different from the type '%s', "
|
"which is different from the type '%s', "
|
||||||
"of the property on interface '%s'\n",
|
"of the property on interface '%s'\n",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user