Fix the cmp implementation for variant values

This was causing g_param_value_defaults to return 1
for GVariant values even when the value is clearly
different from the default.

This was showing up as gtk-builder-tool stripping
non-default values for GtkActionable::action-target
from ui files.
This commit is contained in:
Matthias Clasen 2018-05-01 22:45:31 -04:00
parent 2d67f91e26
commit 566e64a660

View File

@ -1155,7 +1155,7 @@ param_variant_values_cmp (GParamSpec *pspec,
GVariant *v1 = value1->data[0].v_pointer;
GVariant *v2 = value2->data[0].v_pointer;
return v1 < v2 ? -1 : v2 > v1;
return v1 < v2 ? -1 : v1 > v2;
}
/* --- type initialization --- */